当我没有指定域时,我得到了将我的流量排除在外的cookie方法。现在我已经指定了域,它不再有效。它似乎设置了两个Cookie,我创建的exclude.html页面设置了一个“mydomain.com”的cookie,而谷歌分析正在设置一个“www.mydomain.com”的cookie。
以下是我的exclude.html页面的代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Exclude Me</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setVar', 'exclude_me']);
_gaq.push(['_setDomainName', 'www.mydomain.com']);
_gaq.push(['_setAccount', 'UA-xxxxxxxx-x']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<p>
This computer now has a cookie placed on it to exclude it from any Google Analytics reports.</p>
<p>
If you delete your cookies, you will need to revisit/reload this page again.</p>
</body>
</html>
我添加了_gaq.push(['_setDomainName', 'www.mydomain.com']);
以尝试使其工作,但似乎没有做任何事情。这就是我使用www.mydomain.com为所有其他页面设置的方式。
答案 0 :(得分:2)
当我输入这个时,我觉得'_gaq.push(['_ setDomainName','www.mydomain.com']);'应该放在'_gaq.push之前(['_ setVar','exclude_me']);'所以我换了它们,它不再创建两个不同的cookie,所以希望它有效。
答案 1 :(得分:0)
设置“setDomainName”时,您应该从.mydomain.com中删除www。 同样重要的是要注意(.mydomain.com)和(mydomain.com)是两个不同的域,因此产生两个cookie(它们都是有效的,但你应该坚持使用其中一个)。