ロリポップサーバーで、301リダイレクト設定により、
■https:// に統一(常時SSL化の一環)
■www無しのURLに統一
■index.html無しのURLに統一
するやり方です。
.htaccess に以下の記述を加えます。
コピペ用↓
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# www無しのURLに統一
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# index.html無しのURLに統一
RewriteCond %{THE_REQUEST} ^.*/index.(html|php)
RewriteRule ^(.*)index.(html|php)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>