.htaccess RewriteRule 要更改吗?到&

发布于 2024-12-18 10:48:22 字数 563 浏览 0 评论 0原文

我在跟踪 AdWords 访问者时遇到问题。由于网址格式错误,它们不会显示在分析中。花了几个小时尝试编辑我当前的 .htaccess,但没有找到解决方案。我当前的 .htaccess:

RewriteRule ^$ index.php [NC]
RewriteCond %{REQUEST_FILENAME} !(upload||media|admin|index\.php)
RewriteRule .* template.php?seo_url=$0& [PT,L]

因此,当访问者来自 adwords 时,浏览器中的 url 如下所示: http://www.example.com/section?gclid=XXXXX 服务器端网址为:http://www.example.com?seo_url=section?gclid=XXXXX

您能帮我更改 .htaccess 以执行服务器端网址,如 http:// www.example.com?seo_url=section&gclid=XXXXX

谢谢。

I have problem tracking visitors from Adwords. They do not show in analytics, because of bad url formating. Spent hours to trying edit my current .htaccess, but found no solution. My current .htaccess:

RewriteRule ^$ index.php [NC]
RewriteCond %{REQUEST_FILENAME} !(upload||media|admin|index\.php)
RewriteRule .* template.php?seo_url=$0& [PT,L]

So when visitor comes from adwords, url in browser looks like:
http://www.example.com/section?gclid=XXXXX
Server side url is: http://www.example.com?seo_url=section?gclid=XXXXX

Could you help me to change .htaccess to do server side url like http://www.example.com?seo_url=section&gclid=XXXXX

Thank you.

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

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

发布评论

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

评论(2

痴梦一场 2024-12-25 10:48:23

实际应该发生的是,原始查询字符串应该被丢弃,只保留 RewriteRule 查询字符串。为了避免这种情况,请使用 QSA 标志。像这样的东西

RewriteRule ^(.*)$ template.php?seo_url=$1 [QSA,PT,L]

What should actually happen is that the original query string should be discarded and only the RewriteRule query string should remain. To avoid that, use the QSA flag. Something like

RewriteRule ^(.*)$ template.php?seo_url=$1 [QSA,PT,L]
暮年 2024-12-25 10:48:23

尝试像这样的 RewriteRule:

RewriteRule .* template.php?seo_url=%{REQUEST_URI}&%{QUERY_STRING} [PT,L]

Try a RewriteRule like this:

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