多域名绑定到一个空间访问不同首页的技巧
2018-09-06 12:08
阅读:418
将多个域名绑定到一个空间,访问不同的首页。这样设立更多的子站点:)
空间内默认首页(通常是index.asp或default.asp)使用Request.ServerVariables(HTTP_HOST)获取用户访问时所使用域名,然后使用Select调用不同文件,可用Response.Redirect或Server.Transfer
复制代码 代码如下:
Dimcc_str_host_name
cc_str_host_name=LCase(Request.ServerVariables(HTTP_HOST))
判断主机名进行跳转
SelectCasecc_str_host_name
Case
Server.Transfermain.asp
Case
Server.Transfermain_2.asp
CaseElse
Server.Transfermain_3.asp
EndSelect
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:多域名绑定到一个空间访问不同首页的技巧
文章链接:http://soscw.com/index.php/essay/10023.html
文章标题:多域名绑定到一个空间访问不同首页的技巧
文章链接:http://soscw.com/index.php/essay/10023.html
评论
亲,登录后才可以留言!