2014-09-29 60 views
4

我有不好的网址:如何重定向301错误的网址?

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 

工作正常。

回答

2

您可以检查查询字符串mod_rewrite

RewriteEngine On 

RewriteCond %{QUERY_STRING} ^one=two&three=3&44=1$ [NC] 
RewriteRule ^first/second/$ /? [R=301,L]