ClassicASP http:// 도메인에 www 를 무조건 넣거나 빼기
페이지 정보
본문
1. 도메인에 www 를 무조건 넣기
<%
' 도메인에 www 를 무조건 붙이기
'Request.ServerVariables("http_host") ' http:// 또는 https:// 를 제외한 도메인주소
if Left(Request.ServerVariables("http_host"),4) <> "www." then
%>
<script>
parent.location.href="//www.<%=request.ServerVariables("server_name")%><%=request.servervariables("http_url")%>";
</script>
<%
end if
%>
1-2. 여러개 도메인을 사용할때 ( 도메인 체크후 각각 다른 웹페이지로 넘김 )
<%
Dim header, header1, header2, sheader1, sheader2
header = Request.ServerVariables("http_host") ' http:// 또는 https:// 를 제외한 도메인주소
header1 = Left(header,15)
header2 = Left(header,19)
sheader1 = "happyjung.co.kr" // 15글자
sheader2 = "www.happyjung.co.kr" // 19글자
'response.write header
'response.End()
%>
<script type="text/javascript">
function on_load() {
<% If header1 = sheader1 or header2 = sheader2 Then %>
parent.location.href="http://www.happyjung.co.kr/2.html";
<% else %>
parent.location.href="https://www.happyjung.com/1.html";
<% end if %>
}
</script>
</head>
<body onLoad="javascript:on_load();">
2. 도메인에 www 를 무조건 빼기
<%
' 도메인에 www 를 무조건 빼기
dim header_1
if Left(Request.ServerVariables("http_host"),4) = "www." then
header_1 = split(request.ServerVariables("server_name"),"www.")
%>
<script>
parent.location.href="//<%=header_1(1)%><%=request.servervariables("http_url")%>";
</script>
<%
end if
%>
참고자료
https://blog.naver.com/aussie98/23905505
http://rin2ne.tistory.com/169
<%
' 도메인에 www 를 무조건 붙이기
'Request.ServerVariables("http_host") ' http:// 또는 https:// 를 제외한 도메인주소
if Left(Request.ServerVariables("http_host"),4) <> "www." then
%>
<script>
parent.location.href="//www.<%=request.ServerVariables("server_name")%><%=request.servervariables("http_url")%>";
</script>
<%
end if
%>
1-2. 여러개 도메인을 사용할때 ( 도메인 체크후 각각 다른 웹페이지로 넘김 )
<%
Dim header, header1, header2, sheader1, sheader2
header = Request.ServerVariables("http_host") ' http:// 또는 https:// 를 제외한 도메인주소
header1 = Left(header,15)
header2 = Left(header,19)
sheader1 = "happyjung.co.kr" // 15글자
sheader2 = "www.happyjung.co.kr" // 19글자
'response.write header
'response.End()
%>
<script type="text/javascript">
function on_load() {
<% If header1 = sheader1 or header2 = sheader2 Then %>
parent.location.href="http://www.happyjung.co.kr/2.html";
<% else %>
parent.location.href="https://www.happyjung.com/1.html";
<% end if %>
}
</script>
</head>
<body onLoad="javascript:on_load();">
2. 도메인에 www 를 무조건 빼기
<%
' 도메인에 www 를 무조건 빼기
dim header_1
if Left(Request.ServerVariables("http_host"),4) = "www." then
header_1 = split(request.ServerVariables("server_name"),"www.")
%>
<script>
parent.location.href="//<%=header_1(1)%><%=request.servervariables("http_url")%>";
</script>
<%
end if
%>
참고자료
https://blog.naver.com/aussie98/23905505
http://rin2ne.tistory.com/169
댓글목록
등록된 댓글이 없습니다.