Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 header.php 包含文件中保存了我的 Google Analytics 跟踪代码。如何从某些页面中删除它?由于各种原因,有几页我不想跟踪。
我在 GA 中尝试了正则表达式过滤器,但无济于事。
谢谢
如果它被插入到您自己的服务器端代码中,为什么不只是if()在它周围添加一些以仅在某些正则表达式不匹配(检查当前请求)或未设置某些标志时才嵌入它?对 GA 进行过滤听起来有点像一个不太理想的解决方案,因为数据集已经创建好了。
if()
尝试:
header('Location: http://www.example.com/?id=154077'); header('X-Robots-Tag: noindex, nofollow', true);