問題は、サブドメインを個別に追跡する必要があることです。したがって、subdomain.doman.com に別のトラッカーを作成しました。しかし、Googleアナリティクスはこのコードを提供しています
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']);
予定です。私たちを手伝ってくれますか