ClassicASP http:// 도메인을 https:// 로 이동하기 (포워딩)
페이지 정보
본문
SSH 즉, https 서비스를 www 유무중 한개만 서비스를 사용하는 경우에는 아래 2단계의 과정을 거쳐서 연결합니다.
<%
' 도메인에 www 를 무조건 넣거나 빼기
' 참고자료 : https://www.happyjung.com/lecture/146
' 도메인에 http 를 https 로 변경하기
dim nowprotocol
nowprotocol = Request.ServerVariables("HTTPS")
if nowprotocol = "off" then
ssl_port = "" ' 433 포트가 아닐때 입력
if ssh_port = "" then
%>
<script type="text/javascript">
parent.location.href="https://<%=request.ServerVariables("server_name")%><%=request.servervariables("http_url")%>"
</script>
<%
else
%>
<script type="text/javascript">
parent.location.href="https://<%=request.ServerVariables("server_name")%><%=ssl_port%><%=request.servervariables("http_url")%>"
</script>
<%
end if
end if
%>
참고자료
http://rin2ne.tistory.com/169
https://www.happyjung.com/lecture/146
<%
' 도메인에 www 를 무조건 넣거나 빼기
' 참고자료 : https://www.happyjung.com/lecture/146
' 도메인에 http 를 https 로 변경하기
dim nowprotocol
nowprotocol = Request.ServerVariables("HTTPS")
if nowprotocol = "off" then
ssl_port = "" ' 433 포트가 아닐때 입력
if ssh_port = "" then
%>
<script type="text/javascript">
parent.location.href="https://<%=request.ServerVariables("server_name")%><%=request.servervariables("http_url")%>"
</script>
<%
else
%>
<script type="text/javascript">
parent.location.href="https://<%=request.ServerVariables("server_name")%><%=ssl_port%><%=request.servervariables("http_url")%>"
</script>
<%
end if
end if
%>
참고자료
http://rin2ne.tistory.com/169
https://www.happyjung.com/lecture/146
댓글목록
등록된 댓글이 없습니다.