如何找出推荐网址是什么?
人们从各种其他网站访问我的网站,我想知道这些推荐网址?我怎样才能用 PHP 做到这一点?
People come to my website from variety of other websites and I would like to know these referral urls? How can I do it in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
$_SERVER['HTTP_REFERER']
获取引荐来源网址。请注意,客户端很容易欺骗它,因此不要依赖它来做任何重要的事情。您可以在此处了解其他
$_SERVER
变量。You can get the referrer using
$_SERVER['HTTP_REFERER']
. Note that it's very easy for the client to spoof this, so don't rely on it for anything important.You can find out about other
$_SERVER
variables here.或者
or
使用系统变量:
检查此答案以获取更多详细信息。
确定 PHP 中的 Referer
Use the system variable:
Check this answer for more details.
Determining Referer in PHP