第一步:首页添加 <script type="text/javascript" language="javascript" src="/ip/index.php"></script>
第二步:/ip/index.php
<?php
//$cip = $_SERVER['REMOTE_ADDR'];
//if($cip != '125.215.44.148' && $cip != '125.215.45.43'){
// echo 'window.location.href="/base.html";';
//}
//白屏代码
//echo 'document.write(\'<style type="text/css">html{ display:none;}</style>\');';
//跳转代码
echo 'window.location.href="/base.html";';
exit;
?>
第三步:根目录base.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>error</title>
</head>
<body>
</body>
</html>
评论