強制的にhttpsにリダイレクトする

.htaccessファイルに下記のコードを追記します。

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

WordPressによる記述などが既にあれば、その上に記述します。