Google Analytics强制HTTPS阻止307内部重定向
当Google Analytics从http页面发送数据时,它将以http请求的形式开始,如下所示:
http://www.google-analytics.com/collect?payload-data-goes-here
但由于HTTP严格传输安全性(HSTS),这会导致307状态码(内部重定向),并且此重定向是完全相同URL的https版本。
如何强制Google Analytics只发送来自http页面的一个https请求?
解决方案是使用ForceSSL
。 这迫使Google Analytics始终通过https发送数据。
的analytics.js
ga('set', 'forceSSL', true);
默认情况下,从https页面发送的跟踪信标将使用https发送,而从http页面发送的信标将使用http发送。 将forceSSL设置为true将强制http页面也使用https发送所有信标。
https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#forceSSL
例:
<!-- Google Analytics -->
<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-XXXXX-Y', 'auto');
ga('set', 'forceSSL', true); // <---------------------------- add this!
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
ga.js(遗产)
_gaq.push(['_gat._forceSSL']);
将Google Analytics配置为使用SSL发送所有匹配,即使来自不安全(HTTP)页面也是如此。
https://developers.google.com/analytics/devguides/collection/gajs/methods/gaJSApi_gat#_forcessl
示例(异步):
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_gat._forceSSL']); // <------------------------ add this!
_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>
示例(传统的.js代码段):
var pageTracker = _gat._getTracker("UA-XXXXX-X");
_gat._forceSSL(); // <---------------------------------------- add this!
pageTracker._trackPageview();
链接地址: http://www.djcxy.com/p/31189.html
上一篇: Google Analytics force HTTPS to prevent 307 Internal Redirect
下一篇: Abort Google Analytics when I print if there is no internet