주소 고정 하고 주소창에 도메인 주소 입력시 https로 자동 변환 하는 소스 > 그누보드5 팁자료실

그누보드5 팁자료실

주소 고정 하고 주소창에 도메인 주소 입력시 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개

© SIRSOFT
현재 페이지 제일 처음으로