Apache의 httpd.conf 파일을 수정하여 HTTPS 리다이렉션 구현
RewriteEngine ON
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Apache의 httpd.conf 파일을 수정하여 HTTPS 리다이렉션 구현
RewriteEngine ON
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}