(주)누리웨어

화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/

iis6 에서 SSL적용시 http 접속을 https 로 리다이렉트 설정하기

1.제어판 > 관리도구 > 인터넷 정보 서비스(iis)관리 > 해당 웹사이트 우클릭 메뉴 >  속성

2.디렉터리 보안 탭 > 보안 통신 섹션 > 편집버튼 > 보안 채널 필요(SSL) 체크, 128비트 암호화 체크

sample001

sample002

3. HttpRedirect.htm 파일을 만들어 C:\InetPub 에 저장

<!– beginning of HttpRedirect.htm file –>
<script type=”text/javascript”>
function redirectToHttps()
{
var httpURL = window.location.hostname + window.location.pathname;
var httpsURL = “https://” + httpURL ;
window.location = httpsURL ;
}
redirectToHttps();
</script>
<!– end of HttpRedirect.htm file –>

4. 사용자 적용 오류 403.4 에 해당하는 파일경로를 C:\InetPub\HttpRedirec.htm으로 지정

sample003

5. 테스트

댓글 남기기