如何重定向301坏网址?

时间:2014-09-29 17:53:29

标签: php .htaccess

我的网址不好:

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

工作正常。

1 个答案:

答案 0 :(得分:2)

您可以使用mod_rewrite

检查查询字符串
RewriteEngine On

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