一、用这个方法,把虚拟主机的默认页只设置成一个比如index.asp (1)在index.asp的最上面加入以下代码:<%if Request.ServerVariables(SERVER_NAME)=www.aaa.com thenresponse.redirect aaa/else%><%end if%><%if Request.ServerVariables(SERVER_NAME)=www.bbb.com thenresponse.redirect bbb/else%><%end if%>这样就跳转了两个不同的目录……理论上可以无限绑定域名跳转。(2)一个简单的域名自动转向源代码<%if Request.ServerVariables(SERVER_NAME)=www.happyest.com thenresponse.redirect happyest/index.aspelseresponse.redirect websites/end if%>此ASP代码功能是当两个域名指向同一个主机时,可以自动重定向到相应的域名网站。