我需要将动态 url 重定向到另一个 url,动态部分保持不变,例如:
http://www.mydomain.com/VARHome.aspx?var=32
需要重定向到:
至:http ://www.otherdomain.com/VARHome.aspx?var=32
“var=”后面的值是动态的,可以是任意数字。
这需要通过 .htaccess 来完成。
谢谢你的帮助!
我需要将动态 url 重定向到另一个 url,动态部分保持不变,例如:
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
重写引擎开启
重定向匹配 301 ^/VARHome.aspx?var=(.*)$ http://www.otherdomain.com/VARHome.aspx?var= $1