我想限制来自特定地理区域的所有用户访问我的网站。
答案 0 :(得分: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!";
}
?>