我的网址不好:
http://mypage.org/first/second/?one=two&three=3&44=1
我想将此重定向发送到:
http://mypage.org
但是在htaccess:
Redirect 301 /first/second/?one=two&three=3&44=1 http://mypage.org
不工作。例如:
Redirect 301 /first/second http://mypage.org
工作正常。
答案 0 :(得分:2)
您可以使用mod_rewrite
RewriteEngine On
RewriteCond %{QUERY_STRING} ^one=two&three=3&44=1$ [NC]
RewriteRule ^first/second/$ /? [R=301,L]