2016-02-04   ssl   web   apache 

http から https へのリダイレクトを行う httpd.conf (mod_rewrite)

前提

目標

方法

LoadModule rewrite_module modules/mod_rewrite.so

<VirtualHost XXX.XXX.XXX.XXX:80>
  ServerName www.example.com
  <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
  </IfModule>
</VirtualHost>

関連

 2016-02-04   ssl   web   apache