특정메뉴만 http로 접속을 해야했기 때문에,
서버상에서 http 접속을 모두 https로 변경해주지는 못했습니다.
인덱스인 경우만 http로 접속시 https로 접속하는 방법입니다.
1. PC버전
경로 : ./index.php
if($_SERVER['HTTPS']!=='on'){
header('Location: https://'.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']);
}
2. 모바일버전
경로 : ./mobile/index.php
if($_SERVER['HTTPS']!=='on'){
header('Location: https://'.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']);
}