标签: php http redirect http-redirect
网站 A 包含网站 B 的重定向。
header("Location: http://B.com/");
我只需要知道用户是否来自 A 。 在网站 B ,无法通过$ _SERVER [' HTTP_REFERER']获得引用。
提前感谢您提供其他任何有效的解决方案。
答案 0 :(得分:2)
使用GET变量获取此数据。
header("Location: http://B.com/?refferer=A");