我有一个站点http://example.com,我需要将http://example.com/ * 等任何路径的所有请求路由到/
我有确切的工作代码2路径:
location ~ ^/(test1|test2) {
rewrite ^/(test1|test2)$ / break;
proxy_pass http://127.0.0.1;
}
但对于通配符,它不起作用:
location ~ ^/(.*) {
rewrite ^/(.*)$ / break;
proxy_pass http://127.0.0.1;
}
是正则表达式错了还是什么?
1条答案
按热度按时间pvabu6sv1#
试试这个:
此位置包括除根目录以外的任何路径。