ページに Google アナリティクスを実装しようとしていますが、何も追跡することを拒否しています。
パブリック ドメインはwww.publicdomain.comにあり、ページに入ると次の URL にリダイレクトされます: www.publicdomain.com/sub1/sub2/index.php
このウェブサイトは別のドメインでホストされています:
www.privatedomain.com/publicdomain/sub1/sub2/index.php
これは、 index.phpファイルの body タグ内で使用している GA コードです。
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-9999999-9']);
_gaq.push(['_setDomainName', 'publicdomain.com']);
_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>
何が間違っている可能性がありますか?