我想只允许来自某个引用 URL(例如“example.com/123”)的流量访问我的网站。我希望在特定延迟(例如 1 或 2 分钟)后将其余流量重定向到相同的引用 URL。我希望不再引用来自 example.com/123 的流量。
我想过使用这样的东西,但我不知道如何编辑以满足我的要求:
<?php
$referrer = $_SERVER['HTTP_REFERER'];
if (preg_match("/site1.com/",$referrer)) {
header('Location: http://www.customercare.com/page-site1.html');
} elseif (preg_match("/site2.com/",$referrer)) {
header('Location: http://www.customercare.com/page-site2.html');
} else {
header('Location: http://www.customercare.com/home-page.html');
};
?>