使用Google Analytics跟踪图像下载

时间:2013-08-14 18:53:49

标签: javascript google-analytics

我在www.mydomain.com/images/cute_cat.png上有一张图片,我想提供一些javascript代码,以便每当有人使用google analytics javascript片段向网页发出请求时。

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-Y']);
  _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>

这有可能吗?

1 个答案:

答案 0 :(得分:1)

以下是我的第二个建议的更多细节。

在你的htaccess中添加如下内容:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yourdomain.com [NC]
RewriteRule ^(.*)cute_cat\.png $  trackthis.php?campain=cutecat [L]

并在trackthis.php中使用我建议的API将您的数据发送给Google。 然后只需在PHP中使用标题调用并重定向到图像。