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.
メンテナンスページにリダイレクトするための書き換えルールがあります
RewriteEngine On RewriteCond %{REQUEST_URI} !^/wh_client1/index.html RewriteRule ^ /wh_client1/index.html [R=301]
正常に動作していますが、上記のルールが適用されない 1 つの IP を除外したい
出来ますか?
ページへのアクセスから IP を除外するには、Apache を使用していると仮定して、次のような句を使用できます。
RewriteCond %{REMOTE_ADDR} !^11\.22\.33\.44$ [NC]
この回答で11.22.33.44は、例です。実際の IP アドレスに置き換えてください。
11.22.33.44