0

我在 www.mydomain.com/images/cute_cat.png 有一张图片,我想放一些 javascript 代码来查看每当有人使用谷歌分析 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>

这可能吗?

4

1 回答 1

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 中使用标头调用并重定向到图像。

于 2013-08-14T19:32:33.297 回答