본문 바로가기
개발/Java

[JavaScript] HTTP프로토콜 HTTPS로 변경

by 마메의여행기 2014. 5. 27.

 

[JavaScript] HTTP프로토콜 HTTPS로 변경

 

1
2
3
4
    // HTTP프로토콜 HTTPS로 변경
    if (document.location.protocol == 'http:') {
        document.location.href = document.location.href.replace('http:''https:');
    }
cs