ASP를 사용하여 https 리다이렉트 방법
1. 홈페이지 루트 폴더에 ssl.asp(임의적으로 이름변경)파일생성 후 아래의 첫번째 또는 두번째 방법 작성 후 저장

2. 홈페이지 index 페이지 최상단에 <!–#include virtual=”.\ssl.asp”–> 삽입

첫번째 방법 :

———————————————————————–
<%
nowprotocol = Request.ServerVariables(“HTTPS”)
if nowprotocol = “off” then
%>
<script language=”javascript”>
parent.location.href=”https://홈페이지 주소”
</script>
<% end if %>

———————————————————————–

 

두번째 방법 :
———————————————————————–
<%
   If Request.ServerVariables(“SERVER_PORT”)=80 Then
      Dim strSecureURL
      strSecureURL = “https://”
      strSecureURL = strSecureURL & Request.ServerVariables(“SERVER_NAME”)
      strSecureURL = strSecureURL & Request.ServerVariables(“URL”)
      Response.Redirect strSecureURL
   End If
%>
———————————————————————–