我创建了一个网站,重定向到另一个网站:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Site 1</title>
<meta http-equiv="refresh" content="1;url=http://page2.com">
<script type="text/javascript">
window.location.href = "http://page2.com"
</script>
</head>
<body>
If you are not redirected automatically, click
<a href='http://page2.com'>here</a>.
</body>
</html>
现在在接收页面上; page2.com,如何知道用户是来自page1还是其他页面?如果他们来自其他来源,我不需要知道。我只需要知道他们是否来自我的重定向页面。
答案 0 :(得分:1)
<script>
var x = document.referrer;
alert(x);
if (x == 'http://stackoverflow.com/questions/35236796/knowing-the-source-of-a-website/35236811')
alert('hi stackoverflower');
</script>
示例:http://ec2-52-49-115-131.eu-west-1.compute.amazonaws.com/test.php