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.
次の状況でnginx書き換えルールを実装しようとしています:
リクエスト xyz.com/abcd1.css は、同じ URL と異なる IP を持つ別のサーバーにリダイレクトする必要があります
abcd1 cssの形式の通常の exp ですabcd2.css。abcd3.css
abcd1 css
abcd2.css
abcd3.css
書き換えルールを使用した単純なロケーション ブロックでそれを行うことができます。
http { ... server { ... location ~* /abcd(.*).css { rewrite ^ $scheme://some.other.host$request_uri? permanent; } } }
正確な要件に応じて、置換できる有効な正規表現がいくつかある可能性があります。
関連ドキュメント: location、rewrite、$scheme