调用代码:
将下下代码加入到你的网站入口中就行了,如index.php
<?php require_once 'beian.php'; $ip = beian::getIP(); $city = beian::getCity($ip); //将陕西省更换成 你备案所在省份即可,原来按市屏蔽就可以了,但考虑到IP的误差这里直接屏蔽省 if($city['region']=='陕西省'){ header("HTTP/1.1 404 Not Found"); header("Status: 404 Not Found"); header("Content-type:text/html;charset=utf-8"); exit('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>404 Not Found</title> </head> <body> <p>404 Not Found</p> </body> </html>'); } ?>