asp判断不同域名进入不同目录
   日期:2017-06-15
	
	<%
	if request.serverVariables("server_name")="192.168.10.10" then 
response.redirect("/wz/index.asp") 
end if 
if request.serverVariables("server_name")="www.tiantianxh.cn" then 
response.redirect("/xh/default.asp") 
end if 
%>

