私はどこかにホストされているウェブサイトを持っています。この Web サイトには約 20 のドメインがあります。これまで、クロスドメイン、サブドメイン、iframe の Google アナリティクス トラッキング コードを正常に設定しました。
私の問題は、追跡されていない ascii 文字 (ä) のないドメインが 1 つあることです。
私の追跡コード:
var hostname = 'someDomäin.com'; //Depends on domain which is used
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxx-x']);
_gaq.push(['_setDomainName', hostname]);
_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);
})();
Google アナリティクスは、魔女の特殊文字 (ä、ö、ü) を除くすべてのドメインを正しく追跡しています。
Analytics がすべてのドメインを正しく追跡していることをどのように管理できますか?
私の悪い英語でごめんなさい、私はドイツ出身です。