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.
有没有办法跟踪用户何时从 facebook、twitter 或 pinterest 等社交媒体访问我们的页面?
有没有办法在 url 中添加一些参数,以便更容易跟踪?
<?php echo $_SERVER['HTTP_REFERER']; ?>
这个小小的 php 脚本使您能够知道用户来自哪里。
编辑
正如nyshangal要求的jsp代码
JSP
request.getHeader("Referer");
我不擅长 JSP。谷歌搜索后,我发现上面的代码将返回用户来自的引荐来源网址。
谢谢