我在google analytics上的個人檔案是http://example.com(沒有www)。這個腳本在我的網站上:Google Analytics(分析)是否從子網域中統計默認數量?
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxx-2']);
_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);
})();
Google Analytics會從subdomain.example.com計數視圖?
另外一個問題,我想從static.example.com免費的谷歌分析的餅乾。我試過放_gaq.push(['_setDomainName', 'example.com']);
但仍然在螢火蟲上看到來自static.example.com的圖片上的cookies。