0

問題は、サブドメインを個別に追跡する必要があることです。したがって、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']); 予定です。私たちを手伝ってくれますか

4

1 に答える 1

1

うーん、同様のセットアップが私の側で機能しています。

または、既存のウェブ プロパティ内に新しいプロファイルを作成し、そのホスト名と一致するようにインクルードを設定することもできます。

別の解決策は、Google タグ マネージャーを使用して、起動ルールを介して特定のホスト名に特定の GA スニペットをデプロイすることです。

于 2013-04-30T00:00:52.153 に答える