问题是 - 我需要单独跟踪子域。因此我在 subdomain.doman.com 上创建了单独的跟踪器。但谷歌分析提供此代码
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'XXXXX']);
_gaq.push(['_setDomainName', 'domain.com']);
_gaq.push(['_setAllowLinker', true]);
_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);
})();
当我将它放在 subdomain.domain.com 中时它不起作用......我应该更改 _gaq.push(['_setDomainName', 'domain.com']); 我打算
_gaq.push(['_setDomainName', 'subdomaindomain.com']);
只跟踪那个子域。你可以帮帮我吗