我一直在尝试使用单个Google分析代码跟踪我的3个以上网站。在这种情况下,我尝试使用以下从博客中获取的代码来跟踪它。
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
//Load the plugin.
ga('require', 'linker');
// Define which domains to autoLink.
ga('linker:autoLink', ['www.abc.com', 'www.def.com']);
ga('create', 'UA-XXX8XXX4-1', 'auto', {
'allowLinker': true,
'cookieDomain': 'none'
});
ga('send', 'pageview');
其中www.abc.com是我在谷歌分析账户中创建了一个名为“ABCPropery”的网站,我得到的跟踪ID是UA-XXX8XXX4-1。
现在我的问题是它始终跟踪www.abc.com上的页面浏览量,但不会在www.def.com上跟踪。
所以,我想要的是跟踪abc.com和def.com的页面浏览量。虽然我已在两个网站的母版页中添加了上述脚本(例如www.abc.com,www.def.com)。
任何人都可以帮我解决这个问题,如何使用单一代码跟踪网站?我在这里做错了什么?
答案 0 :(得分:0)
只需使用以下内容:
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
//Load the plugin.
ga('require', 'linker');
// Define which domains to autoLink.
ga('linker:autoLink', ['www.abc.com', 'www.def.com']);
ga('create', 'UA-XXX8XXX4-1', 'auto', {
'allowLinker': true
});
ga('send', 'pageview');