我需要跟踪一个重定向到另一个 url 的动态按钮。每次发生这种情况时,我都需要进行跟踪,并确切知道用户正在重定向到哪个 url。
按钮代码:
<a target="_blank" href="/out.php?url=<?php echo urlencode($this->product['from'])?>">
<img src="http://xxx.com/data/images/buy.jpg" alt="buy"/>
</a>
文件“out.php”
<?php
$url = urldecode($_GET['url']);
header("Location: ".$url);
exit;?>
我希望这样,例如,如果用户点击购买,它会重定向到“out.php”并显示一条消息,例如“U are beeing in a few seconds are redirected”,然后发送到 url。
我需要这个来通过分析跟踪用户登陆该页面的次数以及他们来自哪里,获得一些关于出站点击的指标。
有谁知道该怎么做?
提前致谢!!