WordPressにおける.htaccessの設定
ディレクトリー直下のフォルダーにおく.htaccessファイル
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# httpからの通信を、httpsにリダイレクト(www有り無し)
RewriteCond %{HTTPS} off
RewriteRule ^(.*$) https://youersite.com/$1 [R=301,L]
# httpsからの通信でwww有りの場合、www無しにリダイレクト
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www.youersite.com$
RewriteRule ^(.*)$ https://youersite.com/$1 [R=301,L]
# index.htmlはなしで統一
RewriteCond %{THE_REQUEST} ^.*/index.(html|php)
RewriteRule ^(.*)index.(html|php)$ http://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
youersiteをご自身のアドレスに変更してください。