본문 바로가기

JS/javascript

[js] http로 접속하면 https로 redirect

728x90
반응형

http로 접속을 하면 https로 리다이렉트 하는 방법은 여러가지가 있다.

 

그중 js로 처리 하는 방법이다.

 

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

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

}

 

728x90
반응형