标签: nginx rewrite
我想将以下网址http://example.net/bar/foo重写为http://example.net/bar。
http://example.net/bar/foo
http://example.net/bar
你知道怎么做吗?
答案 0 :(得分:0)
使用此:
location /bar { rewrite ^/bar/(.*)/[^/]+$ /bar/$1; }