單個(gè)空間綁定多個(gè)域名實(shí)現(xiàn)自動(dòng)跳轉(zhuǎn)的幾種方法
[重要通告]如您遇疑難雜癥,本站支持知識(shí)付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時(shí)間哦!
單個(gè)空間綁定多個(gè)域名實(shí)現(xiàn)自動(dòng)跳轉(zhuǎn)的幾種方法
單個(gè)空間綁定多個(gè)域名實(shí)現(xiàn)自動(dòng)跳轉(zhuǎn)的幾種方法
單個(gè)空間綁定多個(gè)域名實(shí)現(xiàn)自動(dòng)跳轉(zhuǎn)的幾種方法
[quote]
如果只有一個(gè)ASP空間,而你又想放置多個(gè)多個(gè)站點(diǎn),這些代碼可以幫到你
第一個(gè)
程序代碼
<% if Request.ServerVariables("SERVER_NAME")="www.5uhezu.com" then response.redirect "5uhezu/index.htm" else response.redirect "index2.htm" end if %>
第二個(gè)
程序代碼
<% select case request.servervariables("http_host") case "www.5uhezu.com" '1 Server.Transfer("v3.htm") case "m.madamerex.com" '2 Server.Transfer("i.htm") case "www.zaijining.com.cn" '3 Server.Transfer("zaijining.htm") ...... 繼續(xù)添加 ...... end select %>
第三個(gè)
程序代碼
<%
if instr(Request.ServerVariables("SERVER_NAME"),"www.5uhezu.com")>0 then
response.redirect "index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"m.madamerex.com")>0 then
response.redirect "x/index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.zaijining.com.cn")>0 then
response.redirect "index3.asp"
end if
%>
第四個(gè)
程序代碼
<% if Request.ServerVariables("SERVER_NAME")="www.5uhezu.com" then response.redirect "index1.asp" elseif Request.ServerVariables("SERVER_NAME")="m.madamerex.com" then response.redirect "index2.asp" elseif Request.ServerVariables("SERVER_NAME")="www.zaijining.com.cn" then response.redirect "index3.asp" end if %>
第五個(gè)
程序代碼
<% if Request.ServerVariables("SERVER_NAME")="www.5uhezu.com" then Server.Transfer("williamlong.htm") elseif Request.ServerVariables("SERVER_NAME")="m.madamerex.com" then Server.Transfer("moon.htm") elseif Request.ServerVariables("SERVER_NAME")="www.zaijining.com.cn" then Server.Transfer("write100.htm") else Server.Transfer("other.htm") end if %>
這是一段很有用的代碼,和綁定多域名的ASP代碼類似,如果你只有一個(gè)PHP空間,而你又想放置多個(gè)多個(gè)站點(diǎn),下面這些代碼可以幫到你
第一個(gè):
程序代碼
if($HTTP_HOST=="www.5uhezu.com"){
Header("Location: moon.htm");
}
elseif($HTTP_HOST=="m.madamerex.com"){
Header("Location: williamlong.htm");
}
else{
Header("Location: other.htm");
}
第二個(gè):
程序代碼
if($HTTP_HOST=="www.5uhezu.com"){
require "moon.htm";
}
elseif($HTTP_HOST=="m.madamerex.com"){
require "williamlong.htm";
}
else{
require "other.htm";
}
二用JS來(lái)實(shí)現(xiàn)多域名的跳轉(zhuǎn)
詳解:
1:首先,你的空間必須支持ASP,并且這個(gè)空間可以綁定下面所用到的兩個(gè)域名,然后新建一個(gè)ASP
的首頁(yè)文件,這個(gè)ASP文件中的代碼這么寫:
<%if Request.ServerVariables("SERVER_NAME")="XXXX.cn" then '第一個(gè)輸入的網(wǎng)址
response.redirect "index.html" '將它轉(zhuǎn)發(fā)到相應(yīng)的文件夾
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="www.XXXX.cn" then response.redirect
"index.html"
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="XXXX.cn" then '第二個(gè)輸入的網(wǎng)址 response.redirect "soft/index.html" '將它轉(zhuǎn)發(fā)到相應(yīng)的文件 夾 else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="www.XXXX.cn" thenresponse.redirect "soft/index.html" else%>
<%end if%>
2:寫好后將這個(gè)文件存儲(chǔ)為index.asp ,也就是要做你的首頁(yè)。不用擔(dān)心,這個(gè)是不會(huì)顯示的。這
個(gè)就是自動(dòng)識(shí)別訪問(wèn)者輸入域名的,然后依據(jù)訪問(wèn)者輸入的地址進(jìn)行自動(dòng)跳轉(zhuǎn)的。跳轉(zhuǎn)是在瞬間完
成的,你是看不到的。呵呵
3.現(xiàn)在要做的就是把你空間中建立兩個(gè)不同的文件夾了,分別做為兩個(gè)網(wǎng)站的目錄。比如一個(gè)放音
樂(lè)的cd文件夾。一個(gè)放FLASH動(dòng)畫的flash夾件夾。里面的內(nèi)容自己放!
4.開始上傳剛才做的index.asp文件吧!把index.asp文件上傳到空間根目錄下。
5.去你的空間中將兩個(gè)域名都進(jìn)行綁定好,然后就可以測(cè)試了。
[/quote]
問(wèn)題未解決?付費(fèi)解決問(wèn)題加Q或微信 2589053300 (即Q號(hào)又微信號(hào))右上方掃一掃可加博主微信
所寫所說(shuō),是心之所感,思之所悟,行之所得;文當(dāng)無(wú)敷衍,落筆求簡(jiǎn)潔。 以所舍,求所獲;有所依,方所成!