PHP 重定向 - 隐藏引荐来源网址

发布于 2024-11-27 19:25:58 字数 785 浏览 1 评论 0原文

在我的网站上,我希望能够使用不同的引荐来源网址,以免泄露我的流量来自何处。

这是一个例子:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻之岛 2024-12-04 19:25:58

不会。除非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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文