我在下面的两个独立域名中插入了以下代码:www.productsstage.com和www.truthstage.com(实际上是同一个网站)。 我怎样才能看到有多少次点击收到productsstage.com以及https://www.google.com/analytics上有多少个truthstage.com?
<script type="text/javascript">
try{
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-61764359-1']);
_gaq.push(['_setDomainName', window.location.hostname.substring(4)]);
_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);
})();
}catch(e) {}
</script>
我确实在stackoverflow上看了这个:Track multiple top-level domains google analytics,但它看起来像是之前的Google Analytics用户界面的说明。
感谢您的任何帮助。
吉姆。