다중 중국어 구현은 고객이 액세스에 사용하는 도메인 이름을 결정한 후 해당 디렉터리로 이동합니다.
ASP 버전:
여러 도메인 이름을 바인딩하는 여러 ASP 코드 게시
ASP 공간이 있고 여러 사이트를 배치하려는 경우 이 코드가 도움이 될 수 있습니다.
첫 번째 사이트
<%if Request.ServerVariables("SERVER_NAME")="bbs.along. com.ru " then
response.redirect "bbs"
else
response.redirect "index1.htm"
end if%>
두 번째
< ;%
선택 케이스 request.servervariables("http_host")
케이스 "www.along.com.ru" '1
Server.Transfer("along.htm")
케이스 "www. along.net.ru " '2
Server.Transfer("net.htm")
case "www.null.com.ru" '3
Server.Transfer("null.htm")
... 계속 추가하세요...
%>
세 번째 항목 선택
<%if instr(Request.ServerVariables
("SERVER_NAME"),"fjsky. info")>0 then
response.redirect "index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"along.com.ru")>0 then
response.redirect "x/index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"along.net.ru")> ;0 thenr
esponse.redirect " index3.asp"
end if
end if
end if%>
네 번째
<%if Request.ServerVariables("SERVER_NAME")="www.fjsky. info" then
response.redirect "main1.asp"
else if Request.ServerVariables("SERVER_NAME")="fjsky.info" then
response .redirect "main1.asp"
else if Request.ServerVariables("SERVER_NAME")="www.null2.com.ru"이면
response.redirect "/web/index.asp"
그렇지 않으면 Request.ServerVariables("SERVER_NAME")="null2입니다. com.ru" then
response.redirect "/web/index.asp"
end if
end if
end if
end if%>
다섯번째
<%
'HTTP 입력 값을 가져와 HTOST에 지불
host=lcase(request.servervariables("HTTP_HOST"))
'조건부 점프 시작
CASE 호스트 선택
' HOST 값이 www.iswind.net인 경우 이벤트 케이스 "www.iswind.net" 명령을 선택하세요
CASE "www.abc.net"
' 아래는 리다이렉트 명령입니다
response.redirect "web/"
CASE "www.efd.com"
response.redirect "web1/"
'CASE ELSE를 사용하여 다른 요청을 수정합니다
CASE ELSE
response.redirect "web1/"
END SELECT
%>
js 버전:
<script> <br> 시도 <br>{ if( self.location == "http://corn一/" ) <br>{ <br>top.location.href = "http://corn一/catalogue" <br>} <br>else if( self.location == "; http://corntwo/" ) <br>{ <br>top.location.href = "http://corntwo/ 디렉토리"; <br>} <br>else if( self.location == "http ://corn三/" ) <br>{ <br>top.location.href = "http://corn三/catalogue"; <br>} <br>else if( self.location == "http: //corn4/" ) <br>{ <br>top.location.href = "http://corn4/ 디렉토리"; <br>} <br> else <br>{ document.write ("잘못된 액세스 address") } <br>} <br>catch(e) { } <br></script>
case "domain.com":
header("location:blog");
break;
header("location:news")
break; 🎜>또는
$domain_net="yeahe.com";
$dot_net_url="bbs/";
$dot_com_url="flash"; (($HTTP_HOST=="$domain_net")또는($HTTP_HOST=="www.$domain_net"))
{
Header("위치: $dot_net_url")
}
else
{
헤더("위치: $dot_com_url")
}
?>