欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp下同一空间多绑多哥域名的方法

程序员文章站 2023-11-12 14:54:22
同一空间多绑一个域名复制代码 代码如下:<%  checkdomain  sub checkdomain() dim sdom...
同一空间多绑一个域名
复制代码 代码如下:

<% 
checkdomain 
sub checkdomain()
dim sdomain
sdomain = request.servervariables("http_host")
if instr(sdomain,"a.xxx.com")>0 then response.redirect "a/"
end sub
%> 


同一空间多绑二个域名
复制代码 代码如下:

<% 
checkdomain 
sub checkdomain()
        dim sdomain
        sdomain = request.servervariables("http_host")

        if instr(sdomain,"a.xxx.com")>0 then
                response.redirect "a/"
        elseif instr(sdomain,"b.xxx.com")>0 then
                response.redirect "b/"
        end if
end sub
%> 

同一空间多绑三个域名
复制代码 代码如下:

<% 
checkdomain 
sub checkdomain()
        dim sdomain
        sdomain = request.servervariables("http_host")

        if instr(sdomain,"a.xxx.com")>0 then
                response.redirect "a/"
        elseif instr(sdomain,"b.xxx.com")>0 then
                response.redirect "b/"        
        elseif instr(sdomain,"c.xxx.com")>0 then
                response.redirect "c/"        
        end if 
end sub
%>