我有一个以http运行的域名,但当用户转到支付页面时,它以https运行,然后我需要同时跟踪http和https。
我需要更改此默认曲目代码中的某些内容吗?
<script>
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76202182-1', 'auto');
ga('send', 'pageview');
</script>
感谢。
答案 0 :(得分:2)
接受的答案是错误的。标准代码可以在https和http页面上正常工作。
答案中更改的网址甚至没有引用跟踪调用,这是加载跟踪库的网址。过去曾经是ssl在服务器上产生了额外的负担,所以谷歌以前只有在必要的情况下才有相关网址切换到ssl,但过去都是这样,所以现在他们在那里有ssl网址。默认代码。
使用标准代码,你会没事的。您甚至可以通过using the force ssl option独立于您网页的协议强制使用ssl,这不会影响网页跟踪。
答案 1 :(得分:0)
您需要将网址更改为协议相对网址。
从https://www.google-analytics.com/analytics.js更改为//www.google-analytics.com/analytics.js
<script>
(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');
ga('create', 'UA-76202182-1', 'auto');
ga('send', 'pageview');
</script>