カテゴリー
Code WordPress

.htaccess httpからhttpsにリダイレクト

.htaccess

Options +SymLinksIfOwnerMatch

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

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Options +SymLinksIfOwnerMatchはCPIサーバー用の設定。

WordPress設定

[設定]メニュー→[一般]。
「WordPress アドレス (URL)」と「サイトアドレス (URL)」のhttpをhttpsに書き換える。
「WordPress アドレス (URL)」がWPのディレクトリ。
「サイトアドレス (URL)」がサイトURL。

WordPress アドレス (URL):https://アドレス/wordpress
サイトアドレス (URL):https://アドレス

WordPressサイトを常時SSL化する方法

SSL サーバー証明書

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です