Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のApacheリダイレクトルールがあります:
RewriteCond %{HTTP_HOST} ^example\.com [OR] RewriteCond %{HTTP_HOST} ^82\.238\.254\.181 RewriteRule (.*) http\://www\.example\.com/$1 [R=301,L]
IPアドレスもwwwドメインにリダイレクトする必要があります。ブラウザに IP を入力すると、接頭辞として www になります。
HTTP_HOSTクライアントから送信された HTTPHostヘッダーの値が含まれます。
HTTP_HOST
Host
そこに IP アドレスはありません。ユーザーが接続する場合、ヘッダーhttp://82.238.254.181はありません。Host
http://82.238.254.181
以下を使用する必要があります。
RewriteCond %{HTTP_HOST} =""