我想301将mydomainname.com/index.php?sect=programs
重定向到mydomainname.com
我在.htaccess文件中试过这个:
Redirects 301 /index.php?sect=programs http://mydomainname.com
但这不起作用。谢谢!
答案 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]