关于referer的有关问题

WBOY
Release: 2016-06-13 10:51:16
Original
781 people have browsed it

关于referer的问题
我给自己网站做了一个计数器,像统计广告投放的情况,可是出现了referer都是来自计数器的域名(如计数器放在aa.com referer就显示为aa.com了,而不适真正来源页的)
要求如下:总共有三个页面,a(aa.com/aa.php),b(bb.com/bb.php),c(cc.com/cc.php),我在a页面放一个链接,点一下后打开b,b进行技术后转到c页面,我希望c页面上的第三方计数器看到的来源是a(aa.com)

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,"http://www.cc.com/cc.htm");
curl_setopt($ch,CURLOPT_REFERER,"http://www.aa.com");
curl_exec($ch);
curl_close($ch);
?>
使用了这个方法无效。。

------解决方案--------------------
我晕
我也是跟你一样的东西
但是我想在C得到的referer是b 可怎么偏偏是a呢。。。。。。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template