代码如下
RewriteEngine on
RewriteBase/
Order Deny,Allow## 拒绝开关,allow表示拒绝访问
Deny from 182.92.253.20##输入要屏蔽的IP地址
Deny from 121.18.126## 屏蔽IP段
ASP通过在首页添加以下代码实现
<%
requestIP=request.ServerVariables("REMOTE_ADDR")
IP="127.0.0.1|192.168.1.1"
trueURL="http://www.baidu.com"
falseURL="http://www.google.com"
ipArr=split(IP,"|")
flag=false
fori=0to ubound(ipArr)
if requestIP=ipArr(i)then
flag=true
exitfor
end if
next
if flag then
response.Redirect(falseURL)
else
response.Redirect(trueURL)
end if
%>
JS通过以下方式禁止IP访问
可以通过访问新浪提供借口获取IP地址归属地相关信息 :
http://int.dpool.sina.com.cn/iplookup/iplookup.phpformat=js&ip=IP地址