谷歌分析代码和重定向与PHP标题位置

时间:2014-02-08 09:05:54

标签: javascript php google-analytics http-headers

Google分析代码是否会在标头位置重定向之前执行?如果没有,还有另一种方法吗?

示例:

<html>
<body>
<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-0000000-0', 'domain.com');
  ga('send', 'pageview');

</script>
</body>
</html>
<?php
header('Location: http://domain.com');
?>

3 个答案:

答案 0 :(得分:1)

试试 - 没有PHP和(对不起)没有任何重定向原因代码(如&#34; 301&#34;等)。

在我的情况下它工作正常:

&#13;
&#13;
<html>
<body>
<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-0000000-0', 'domain.com');
  ga('send', 'pageview');
  
  window.location = 'http://www.domain.com/redirect-example';

</script>
</body>
</html>
&#13;
&#13;
&#13;

我对任何反馈感到高兴: - )

答案 1 :(得分:0)

<?PHP
ob_start();

echo "<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-0000000-0', 'domain.com');
  ga('send', 'pageview');
</script>";

header("Location: http://www.domain.com/");        
ob_flush();  

答案 2 :(得分:0)

想想你在这里想做什么:

Google Analytics代码由浏览器执行。 PHP是一个预处理器,可在服务器上生成HTTP响应

因此,执行顺序为:

  1. 请求进来(在Apache,NGINX,无论如何)
  2. PHP获取请求并执行必要的操作
  3. PHP生成的输出(通常是HTML)被发送回客户端
  4. 客户端浏览器呈现回复
  5. 响应中的任何JavaScript代码都在客户端的浏览器中运行
  6. PHP将在步骤2中生成HTTP重定向。它告诉客户端的浏览器转到其他地方,然后从步骤1开始。但是您基本上期望步骤5在中间的某个地方执行。

    显然:这不会奏效。

    要么你找到一种从服务器端触发谷歌分析的方法(这可能会破坏跟踪的目的),或者你只需​​要摆脱重定向(并用JavaScript位置更改替换它)或者跳过跟踪电话。

    如果您需要的只是例如一个下载计数器,你可以在发出重定向之前让PHP记录命中。那会有用。