删除/重定向 URL 查询字符串

发布于 2024-11-06 05:12:04 字数 495 浏览 0 评论 0原文

示例:http://dearearth.net/news/?cbg_tz=240

插件包含查询字符串示例和说明的站点:http://plugins.righthere。 com/custom-backgrounds/multiple-schedule/?cbg_tz=480

我过去遇到过一种删除附加到所有 URL 中不需要的 ?cbg_tz=240 的方法。这似乎影响了我的分析并在没有字符串的情况下创建了欺骗...

我相信使用 .htaccess 编辑相当简单。有人有可以完成此任务的 .htaccess 设置吗?

谢谢!

Example: http://dearearth.net/news/?cbg_tz=240

Plugin site with query string example and explanation: http://plugins.righthere.com/custom-backgrounds/multiple-schedule/?cbg_tz=480

I had come across in the past of a way to remove the unwanted ?cbg_tz=240 which is appended to all the URL. This seems to be affecting my analytics and creating dupes wth/ without the string...

I believe it's fairly simple with an .htaccess edit. Anyone have the .htaccess settings which would accomplish this task?

Thanks!

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

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

发布评论

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

评论(1

假装不在乎 2024-11-13 05:12:04

类似的东西: 如何删除 htaccess 中的 url 参数

这应该有效:

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{QUERY_STRING} .
    RewriteRule (.*) $1?
</IfModule>

Something similar: how to remove url parameters in htaccess

This should work:

<IfModule mod_rewrite.c>
    RewriteEngine On

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