자바스크립트로 https ssl 아니면 https로 이동시키기
·
모바일 개발 (웹,앱,UI)
if (location.protocol !== 'https:') { location.replace(`https:${location.href.substring(location.protocol.length)}`);} 참 쉽죠?