Google アナリティクスが 1 文字のドメインで IE 6 ~ 7 (おそらく 8 も?) を使用している Internet Explorer の訪問者を追跡できないというよく知られた問題に対する適切な解決策はありますか?
以下の私のGAコードを見てください:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXX-17']);
_gaq.push(['_setDomainName', 'x.xx']);
_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>