Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个网站 A 和 B。我将关闭第一个网站并使用 301 重定向将所有流量重定向到 B。由于此重定向,我想在 B 上识别来自 A 的流量。
但我不能在 URL 上放置跟踪器。我怎么能以不同的方式做到这一点?
谢谢你们
您可以使用以下方法获取页面的 url(从表单数据发布到当前页面的位置)-
$url=$_SERVER['HTTP_REFERER'];
但这不能完全信任,因为“http 标头”信息可能会被更改或被黑客入侵,或者用户可能使用代理服务器。
您可以在站点 B 的 javascript 中执行此操作
document.referrer将引用 url 返回到该地址。
document.referrer