请问如何设置 rewrite,才能使得 Nginx 二级目录如果是大写跳转为小写?
- 0次
- 2021-05-19 16:02:13
- idczone
现在有个场景需求,列如: https://www.test.com/TeSt/AA/BB 跳转为 https://www.test.com/test/AA/BB
我这样操作不行,
location /test {
proxy_p抗投诉服务器ass http://127.0.0.1:8080;
}
location ~* /test/ {
rewrite .* /test/ last;
}
网上查询看都是直接用 lua 直接整个 url 都转为小写了,但我只需要这个二级目录转为小写,请问如何操作呢?
rewrite /TeST/(.*) /test/$1;