https_redirect

HTTPS Redirect

HTTP 접근시 강제로 HTTPS로 Redirect 되게 하는 방법

httpd.conf 내에 아래 내용을 추가한다.

혹시 VirtualHost 가 적용되어있다면 각 VirtualHost내에 개별로 적용해도 된다.

RewriteEngine On
 
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
로그인하면 댓글을 남길 수 있습니다.
  • https_redirect.txt
  • 마지막으로 수정됨: 2021/12/23 07:53
  • 저자 koov