EOND
HOSTING
WEBDeveloper
FreelancerCafe
Threads

특정메뉴만 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']);
}
 


Type something
0
댓글은 로그인 사용자만 작성 가능합니다. 로그인하기