주소 고정 하고 주소창에 도메인 주소 입력시 https로 자동 변환 하는 소스 정보
주소 고정 하고 주소창에 도메인 주소 입력시 https로 자동 변환 하는 소스본문
별거 아니지만 저 처럼 찾고 있는 분이 계실까봐 공유 합니다.
-----------------------------------------------------------------------------------
주소 고정 하고 주소창에 도메인 주소 입력시 https로 자동 변환 하는 소스
-----------------------------------------------------------------------------------------
<script language=javascript>
 
 if(location.hostname != "localhost") {
    if (window.location.protocol != "https:") {
        window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
    }
    if (document.location.protocol == 'http:') {
        document.location.href = document.location.href.replace('http:', 'https:');
    }
} 
</script>
 
 
 
<html> 
<title>HCN상품문의는 우리HCN에서</title> 
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" /> 
<frameset rows="*" frameborder="no" border="0" framespacing="0">  
<frame src="./bbs/" name="main" scrolling="yes" marginwidth="0" marginheight="0" noresize>
<noframes>  
</frameset>  
</html>
3
댓글 4개

