$ _SERVER ['HTTP_REFERER']有时会有效,有时则无效

时间:2018-03-26 23:39:32

标签: php security restriction

我使用以下代码来限制网站的流量,除非从推介域点击它。由于某种原因,它不能始终如一地工作。有时,即使推荐是正确的,它也会限制网站。不知道为什么!

<?php
// This is to check if the request is coming from a specific domain

$ref = $_SERVER['HTTP_REFERER'];
$refData = parse_url($ref);


if($refData['host'] !== 'allowed-domain.com') {
  // Output string and stop execution
  die("Access Restricted. Internal Use Only.");
}

echo "";
?>

0 个答案:

没有答案