请问,我如何使用以下各项重定向(使用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建议下。
答案 0 :(得分:0)
在.htaccess文件中尝试以下代码:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteCond %{QUERY_STRING} ^(post)?comment(s)?=true$
RewriteRule . %{REQUEST_URI}? [L]