web関連
【wordpress】http→httpsへの.htaccessを用いたリダイレクト方法
さくらサーバー以外のリダイレクト方法わからなかったので調べたときの備忘録
http→httpsへのリダイレクト
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://sample.com/$1 [
書き方例
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://sample.com/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
↓さくらでのリダイレクトの書き方
逆パターンhttps→httpへのリダイレクト
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [R,L]
参考
▼.htaccess の書き方(リダイレクト編)
https://qiita.com/shotets/items/1f8f308e008dcb96bf43
さくらでのhttps→httpへのリダイレクト方法調べてもよくわからなかった