본문 바로가기
카테고리 없음

ssl 적용 하고 url접근 http -> https 변경하는 법

by 멋진 개구리 2021. 12. 13.
반응형

javascript, java  http > https 리다이렉트 방법!!

 

javascript

<script type="text/javascript">

if (document.location.protocol == 'http:') {

    document.location.href = document.location.href.replace('http:', 'https:');

}

</script>



출처: https://grandj.tistory.com/182 [Grand_J]

반응형

댓글