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是形式为 的正则表达式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