공부하자
[PHP] http 를 https 로 리다이텍트 하기 본문
SSL 인증서 작업 후 http를 https 로 리다이렉트 해줘야 무조건 https로 접속이 된다.
리다이렉트 코드를 상단 header 혹은 공통 영역에 작성해준다.
(둘 중 하나)
1.
<?php
if(!isset($_SERVER["HTTPS"]))
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"], true, 301);
exit;
}
?>
2.
<?
// HTTPS 체크 및 URL 리턴
if(!isset($_SERVER["HTTPS"])) {
header('Location: https://해당 URL 주소');
}
?>
https://freedert.tistory.com/134
Comments