2018/10/14

프로토콜(protocol) 변경 Script

코딩시 필요할때가 간간히 있습니다.


HTTP프로토콜 HTTPS로 변경

<script type='text/javascript'>
//<![CDATA[
    if (document.location.protocol == 'http:') {
        document.location.href = document.location.href.replace('http:', 'https:');
    }
//]]>
</script>


HTTPS프로토콜 HTTP로 변경

<script type='text/javascript'>
//<![CDATA[
    if (document.location.protocol == 'https:') {
        document.location.href = document.location.href.replace('https:', 'http:');
    }
//]]>
</script>


가능하면 프로토콜을(http:, https:) 지우고 작업해 줍니다. (안씀//www.uuuuuuuu)


EmoticonEmoticon

구글블로그

  • 웹반응형
  • 모바일친화적
  • 검색최적화
  • 모두무료