//AdSenseにリンク

http→httpsにリダイレクトさせる方法

「http://」で始まるURLでアクセスされた場合、強制的に「https://」のURLに飛ぶようにサーバーへ設定する方法。

FTPに入る

「FTPソフト」もしくは「ロリポップ!FTP」を利用します。

「.htaccess」ファイルを変更

「.htaccess」ファイルを開き「# BEGIN WordPress」~「# END WordPress」の間にある「<IfModule mod_rewrite.c>〜</IfModule>」内に黄色い部分を記述。

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress