시스템운영

아파치 http -> https 리다이렉트 방법

호이잇! 2017. 9. 28. 14:24

    RewriteEngine On

    RewriteCond %{HTTPS} off

    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]


VirtualHost 안에다가 이놈을 추가합니다.


그전에 mod_rewrite 가 Load 되어있어야함!