RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
<VirtualHost *:80>
DocumentRoot /home2/aaa.com
ServerName www.aaa.com
ServerAlias aaa.com
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</VirtualHost>
아파치 가상 호스팅 부분에 추가하면 된다
http 접속시 https 로 변경된다.
|