사이트에 접속 시 무조건 https로 접속되게 하려면 어떻게 해야 하나요?
방법1. 카페24 매뉴얼
//https 로 이동
if (location.protocol === 'http:' && location.host.indexOf('cafe24.com') === -1) {
var sUrl = 'https://' + location.host + location.pathname + location.search;
window.location.replace(sUrl);
}
출처 : https://ecsupport.cafe24.com/board/free/read.html?no=926&board_no=1&category_no=4&cate_no=4&page=2
방법2. [JavaScript] HTTP프로토콜 HTTPS로 변경
// HTTP프로토콜 HTTPS로 변경
if (document.location.protocol == 'http:') {
document.location.href = document.location.href.replace('http:', 'https:');
}
출처 : http://jmap.tistory.com/476