Google Analytics:简单请求uri过滤器

时间:2013-08-18 22:43:51

标签: google-analytics

我需要从analitycs中排除跟踪包含url参数no_index的所有页面 示例:http://www.mysite.com/page.php?product=54&no_index=1

我所做的一切都是在没有其他任何东西的情况下进入过滤模式no_intex。 这是正确的还是正确的正则表达式?

这是一个澄清的截图。

非常感谢你的帮助

enter image description here

2 个答案:

答案 0 :(得分:1)

将过滤器模式设置为:

.label-container {
width: 500px;
margin: 0 auto;
}

我在其中一个帐户中执行相同的操作,删除具有特定网址参数的所有请求,并且完美无缺。在保存过滤器之前,请点击“验证此过滤器”,它会显示结果效果,以便您在保存之前对其进行验证。

Here is a screenshot of the exact configuration settings in Google Analytics that should work

答案 1 :(得分:0)

请尝试使用此过滤模式:\/(.*)\&no\_index(.*)

请求URI直接在主机名后面开始。

所以你的例子,

http://mysite.com(主机名) /page.php?product=54&no_index=1(请求URI)

因此,您的过滤模式no_index会在http://www.mysite.com/no_index=1

后直接查找no_index