http→httpsのリダイレクトするには、/etc/httpd/conf.d/virtual.confに追記して、apache再起動すればOK
1 2 3 4 5 6 7 8 |
<VirtualHost *:80> ServerName sample.com #リダイレクト条件(http→httpsにする。httpsなら何もしない) <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L] </IfModule> |