localhost가 아닌경우 http로 접속시 https로 리다이렉트
if(location.hostname != "localhost") {
if (window.location.protocol != "https:") {
window.location.href = "https:" + window.location.href.substring(window.location.protocol.length);
}
if (document.location.protocol == 'http:') {
document.location.href = document.location.href.replace('http:', 'https:');
}
}
'개발 > javascript' 카테고리의 다른 글
자바스크립트 변수 선언 방법 비교 var, let, const (0) | 2023.08.07 |
---|---|
자바스크립트를 활용한 브라우저 개발자 도구 차단 방법 (0) | 2023.07.10 |
자바스크립트 우클릭 방지: 빠르고 간편한 구현 방법 (0) | 2023.07.10 |
자바스크립트 레이어 팝업 띄우기 (html,css,js) (0) | 2021.12.13 |