PHP 重定向 - 隐藏引荐来源网址
在我的网站上,我希望能够使用不同的引荐来源网址,以免泄露我的流量来自何处。
这是一个例子:
Site 1 - www.examplesite1.com (traffic source) Site 2 - www.examplesite2.com (site to redirect through) Site 3 - www.partnerssite.com (where i want to push traffic from examplesite1.com)
所以我的想法是:
在站点 1 上我会像这样链接:www.examplesite2.com?p=9982
(唯一 ID)
然后在 examplesite2.com
上的 index.php
文件中我将使用一点脚本检查 $_GET['p'] 是否等于 9982,如果等于,我将使用以下命令重定向到 examplesite2.com/out.php
header("location:");
然后再次在 out.php
上,我将使用 header("Location: www.partnerssite.com");< /code>
我的问题:有没有办法让 partnersite.com
看到点击实际上来自 examplesite1.com
?
如果这看起来很混乱,请原谅:)
非常欢迎所有帮助和提示。
On my website I want to be able to use a different referrer in order to not reveal where my traffic is coming from.
Here is an example:
Site 1 - www.examplesite1.com (traffic source) Site 2 - www.examplesite2.com (site to redirect through) Site 3 - www.partnerssite.com (where i want to push traffic from examplesite1.com)
So what I thought was:
On Site 1 I would link like this:www.examplesite2.com?p=9982
(unique id)
Then in the index.php
file on examplesite2.com
I will use a little script to check if $_GET['p']
equals 9982, if it equals I will redirect to examplesite2.com/out.php
by using header("location:");
and then again on out.php
I will redirect with header("Location: www.partnerssite.com");
My question: is there any way at all for partnersite.com
to see that the click actually came from examplesite1.com
?
Please excuse me if this seems messy :)
All help and tips are very welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。除非partnersite.com 的人员能够访问examplesite2.com 的服务器,否则他们无法知道流量来自www.examplesite1.com。
No. Unless people at partnersite.com have access to examplesite2.com's server there is no way they know the traffic is coming from www.examplesite1.com.