Skip to main content
  1. Posts/

WordPressを常時SSL化する

Table of Contents

httpでアクセスしても、httpsにリダイレクトするよう、htaccessを修正した。

追加する記述 #

具体的には以下の通り。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>

httpsではないリクエストが来たら、httpsに置換したURIで、301リダイレクトする、という感じ。