그러냐

HTTP프로토콜 HTTPS로 변경 본문

javascript

HTTP프로토콜 HTTPS로 변경

관절분리 2016. 12. 7. 14:49
반응형
if (document.location.protocol == 'http:') {
        document.location.href = document.location.href.replace('http:''https:');
    }

 

반응형