如何编写重定向规则以防止评论页面中出现重复内容

时间:2011-05-15 16:13:47

标签: wordpress .htaccess redirect

请问,我如何使用以下各项重定向(使用htaccess):

http://www.example.com/jane-doe-online-5026?comments=true
http://www.example.com/jane-doe-online-5026?postcomment=true

致:

http://www.example.com/jane-doe-online-5026

注意:这是一个Wordpress博客,重复数据显示在Google网站管理员工具上 - 在HTML建议下。

1 个答案:

答案 0 :(得分:0)

在.htaccess文件中尝试以下代码:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^(post)?comment(s)?=true$
RewriteRule . %{REQUEST_URI}? [L]