Sunday, September 23, 2007

 

多域名绑定到一个空间访问不同首页的技巧

http://www.5iya.com/blog/post/1.asp

将多个域名绑定到一个空间,访问不同的首页。这样设立更多的子站点:)
空间内默认首页(通常是 index.aspdefault.asp )使用 Request.ServerVariables("HTTP_HOST") 获取用户访问时所使用域名,然后使用 Select 调用不同文件,可用 Response.RedirectServer.Transfer

例子:

Dim cc_str_host_name
cc_str_host_name = LCase(Request.ServerVariables("HTTP_HOST"))
'判断主机名进行跳转
Select Case cc_str_host_name
Case "www.kuozhanming.com"
Server.Transfer "main.asp"
Case "www.suoxie.com"
Server.Transfer "main_2.asp"
Case Else
Server.Transfer "main_3.asp"
End Select


Comments: Post a Comment



<< Home

This page is powered by Blogger. Isn't yours?