如何从/index.php?select=programs等重定向301

时间:2012-02-26 23:20:01

标签: .htaccess url redirect

我想301将mydomainname.com/index.php?sect=programs重定向到mydomainname.com

我在.htaccess文件中试过这个:

Redirects 301 /index.php?sect=programs http://mydomainname.com

但这不起作用。谢谢!

1 个答案:

答案 0 :(得分:0)

尝试将以下内容添加到.htaccess网站根目录中的mydomainname文件中。

RewriteEngine on
RewriteBase /

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\?sect=programs\  [NC]
RewriteRule ^ http://mydomainname.com [L,R=301]