我正在寻找有关重定向永久的一些帮助。
我想做一个重定向,如:
http://www.mydomain.com/site/index.php?code=_fr到http://www.mydomain.com/home
当我对任何 URL 尝试类似的操作时,它都在工作:
RedirectPermanent /site/index.php URLDEST
但如果我想这样做,它就行不通了......
RedirectPermanent /site/index.php?code=_fr URLDEST
我也尝试这样的事情:
RewriteRule ^/site/index.php?code=_fr$ URLDEST [R=301]
但它也不起作用。
我怎样才能做到这一点?