WEB/Apache

[Apache] 80 Port -> 443 Port Redirection

감자밭아이 2018. 8. 10. 18:20

Apache 80 Port -> 443 Port 로 Redirection 설정


------------------------------------------------------------------------------

RewriteEngine On 

RewriteCond %{HTTPS} off

RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

------------------------------------------------------------------------------