0

我想限制来自特定地理区域的所有用户访问我的网站。

4

1 回答 1

0

您可以使用 PHP 来执行此操作:

   <?php 
$ip = $_SERVER['REMOTE_ADDR'];
$file = file_get_contents("http://api.hostip.info/?ip={$ip}");
 if(stristr($file, 'bad country') === FALSE) {
    echo 'ya\'ll may visit this here site.';
  }

else {
echo "nope!";
}
?>
于 2012-09-01T02:15:27.700 回答