httpをhttpsにリダイレクト

2018-11-17 技術系

CentOS7でApacheが動いている環境での設定
/etc/httpd/conf/httpd.confの末尾に追記します。

<ifModule mod_rewrite.c>
  RewriteEngine On
  LogLevel alert rewrite:trace3
  RewriteCond %{HTTPS} off
  RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</ifModule>

follow us in feedly

comments powered by Disqus

関連記事

新着記事