【发布时间】:2020-09-11 20:58:00
【问题描述】:
我想像这样重写 url: www.example.com/TeSt/AAA/BBBB ------> www.example.com/test/AAA/BBB
我是这样做的,但是还没做:
location /test {
proxy_pass http://127.0.0.1:8080;
}
location ~* /test/ {
rewrite .* /test/ last;
}
【问题讨论】:
标签: nginx url-rewriting