1

我希望所有请求都去: http://domain/xyz

被代理

http://127.0.0.1:26991/SOME_RREFIX/xyz

以下规则没有这样做:

    location / {
        rewrite ^.*& /eq/$1;
        proxy_pass http://127.0.0.1:26991;
    }
4

1 回答 1

1

试试这个配置:

location / {
    proxy_pass http://127.0.0.1:26991/eq/;
}
于 2012-06-22T20:49:03.550 回答