我需要動態URL重定向到另一個URL,具有完整的動態部分,例如:htaccess的重寫問題
http://www.mydomain.com/VARHome.aspx?var=32
需要重定向到:
到:http://www.otherdomain.com/VARHome.aspx?var=32
「var =」後面的值是動態的,它可以是任何數字。
這需要通過.htaccess完成。
感謝您的幫助!
我需要動態URL重定向到另一個URL,具有完整的動態部分,例如:htaccess的重寫問題
http://www.mydomain.com/VARHome.aspx?var=32
需要重定向到:
到:http://www.otherdomain.com/VARHome.aspx?var=32
「var =」後面的值是動態的,它可以是任何數字。
這需要通過.htaccess完成。
感謝您的幫助!
我在想RewriteRule ^(.*)$ http://www.otherdomain.com/$1 [R=301,L]
,或者沿着這些路線應該做這個工作。
編輯:也許像
RewriteRule ^VARHome.aspx?var=(.*)?$ http://www.otherdomain.org/VARHome.aspx?var=$1/ [R=301,L]
如果你是在mydomain.com,在.htaccess寫
RedirectMatch 301 ^/VARHome.aspx VAR =
RewriteEngine敘述(?。 *)$ http://www.otherdomain.com/VARHome.aspx?var= $ 1
我只能訪問otherdomain.com htaccess –
對不起,我的意思是相反的,我把那行放在mydomain.com htaccess文件中,不幸的是它沒有工作。該網站是WP,所以我不確定該線是否需要放置在WP生成的.htaccess文件的特定位置。 –
這是一個從mydomain到另一個域的全局重定向,我只想用/VARHome.aspx?var=將URL重定向到otherdomain.com,所以http://www.mydomain.com/VARHome。一個spx?var = 32需要重定向到http://www.otherdomain.com/VARHome.aspx?var=32,但mydomain.com/test.html不會重定向到otherdomain.com/test.html –
@adrian collins增加了另一個版本,也許這是你需要的。 –
仍然無法正常工作,感謝您的幫助 –