标签: apache nginx
我正在尝试为以下情况实施nginx重写规则:
请求xyz.com/abcd1.css应重定向到具有相同网址和不同IP的其他服务器
abcd1 css是abcd2.css,abcd3.css
abcd1 css
abcd2.css
abcd3.css
答案 0 :(得分:0)
带有重写规则的简单位置块可以为您完成:
http { ... server { ... location ~* /abcd(.*).css { rewrite ^ $scheme://some.other.host$request_uri? permanent; } } }
根据您的具体要求,您可以替换几种有效的正则表达式。
相关文件: location,rewrite,$scheme