為了讓客戶端更快速的訪問網站,通常一個大型網站會有許多分站,所以讓客戶端訪問相應的分站,會讓客戶有更好的體驗,這就要用到根據客戶端IP地址轉向不同的分站。這裡面要用到IP數據庫,可到網上去下載。IP數據庫在此主要用途是根據得到的IP,找到此IP所在的地址。
Function getIpvalue(clIEntIP)'得到客戶端的IP轉換成長整型,返回值getIpvalue
On Error Resume Next
Dim strIp, array_Ip
strIp=0
array_Ip = Split(clIEntIP,".")
If UBound(array_Ip)<>3 Then
getIpvalue=0
Exit Function
End If
For i=0 To 3
strIp=strIp+(CInt(array_Ip(i))*(256^(3-i)))
Next
getIpvalue=strIp
If Err Then getIpvalue=0
End Function
clIEntIP=request.ServerVariables("REMOTE_HOST")
IpValue=getIpvalue(clIEntIP)
strSql="select top 1 City from [Ipaddress] where "&IpValue&"
between Ip1 and Ip2"
Set RsIp=conn.execute(strSql)
If RsIp.bof and RsIp.eof then
UrlCity="未知"
Else
UrlCity=RsIp.FIElds.Item("City").Value
End If
if instr(UrlCity,"廣州")<>0 then
response.Redirect("http://code.knowsky.com")
end if
if instr(UrlCity,"深圳")<>0 then
response.Redirect("http://moban.knowsky.com")
end if
if instr(UrlCity,"上海")<>0 then
response.Redirect("http://font.knowsky.com")
end if