1 and 1 ホスティングから cloudways (Digital Ocean) サーバーに移行した後、一部の Mac OS (Yosemite 10.10.5 で通知) で、私の wordpress Web サイトに以下のメッセージが表示されます。
Forbidden
You don't have access to access / on this server
さらに、エラー ドキュメントを使用してリクエストを処理しようとしたときに、404 Not Found エラーが発生しました。
ドメインはwww.lailaloves.co.uk
私の.htacesss
は以下のように書かれています
# 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