使用类似http://www.mywebsite.com/?RT的网址重定向301

时间:2014-02-20 08:44:18

标签: .htaccess redirect parameters

Google已将网页编入索引,重复我的主页。 我最终得到像mywebsite.com /这样的网址? RT我想重定向到mywebsite.com / history以显示Google不会复制。 根据我的理解,你需要使用RewriteCond这样做,但我不能重定向这似乎不是服务器的URL,而只是我的主页...没有变量没有办法...

非常感谢您的任何回复!

1 个答案:

答案 0 :(得分:0)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{THE_REQUEST} \s/+s\?RT[&\s] [NC]
RewriteRule ^ /history? [R=301,L]