获取重定向的 HTTP Referrer

发布于 2024-09-29 03:48:53 字数 143 浏览 5 评论 0原文

当从另一个网站重定向时,而不是当他们点击链接时,如何获取 HTTP Referrer,因为它适用于 $_SERVER['HTTP_REFERER'],但当用户有被重定向到一个网站,并且引荐来源网址将为空。

获取推荐人的方法是什么?

How can you get the HTTP Referrer when redirected from another website, not when they click on a link since it would work for $_SERVER['HTTP_REFERER'], but it doesn't work when a user has been redirected a website and the referrer would be empty.

What will be the method to get the referrer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

朱染 2024-10-06 03:48:53

从其他网站重定向时如何获取 HTTP Referrer

您不能。如果重定向发生在您的控制之下,您可以添加原始引用作为参数,但如果外部重定向器不这样做,您将无法获取该信息。

How can you get the HTTP Referrer when redirected from another website

You can't. If the redirection takes place under your control, you can add the original referer as a parameter, but if the external redirector doesn't do that, you have no way to get hold of the information.

烟柳画桥 2024-10-06 03:48:53

我是如何做到的一个例子。假设我们有 3 个页面,其中一个页面调用下一个页面。

page1.com -> page2.com -> page3.com.

在 page2.com 中使用以下方式获取 page1.com:

$referrer = $_SERVER['HTTP_REFERER'];//=page1.com

重定向到 page3 时,将 $referrer 作为 GET 参数发送,

page3.com?referrer=$referrer

在 page3 中从 get 中读取 $referrer。

$initialReferrer = $_GET['referrer'];//=page1.com

An example of how I did it. Say we have 3 pages, one calling the next.

page1.com -> page2.com -> page3.com.

in page2.com get the page1.com using:

$referrer = $_SERVER['HTTP_REFERER'];//=page1.com

when redirecting to page3, send $referrer as a GET parameter

page3.com?referrer=$referrer

in page3 read the $referrer from the get.

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