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

发布于 2024-11-07 08:38:30 字数 330 浏览 0 评论 0原文

请问,我如何使用重定向以下各项(使用 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 建议下。

Please, how can I use redirect each of the following (using htaccess):

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

To:

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

Note: It's a Wordpress blog and the duplicates are showing on Google Webmaster tools - under HTML suggestions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

[浮城] 2024-11-14 08:38:30

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

Options +FollowSymlinks -MultiViews
RewriteEngine on

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

Try following code in your .htaccess file:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteCond %{QUERY_STRING} ^(post)?comment(s)?=true$
RewriteRule . %{REQUEST_URI}? [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文