根据域名跳转
<html>
<head>

<%...
host=Request.ServerVariables("SERVER_NAME")

if host="www.kingmaneclub.com" then
response.Redirect("index.htm")
elseif host="www.kingmane.net" then
response.Redirect("http://www.kingmane.net/oa.aspx")
end if
%>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>member</title>
</head>

<body>

</body>
</html>


















