1号服务器接收到类似的请求http://server111.com/box_example/?boo=test&too=best
并代理重写请求http://server222.com/u=box_example&?boo=test&too=best
到2号服务器
我尝试以下选项:
location ~*/ {
rewrite ^/([a-z0-9])$ u=box_example&?boo=test&too=best break;
rewrite ^/(~*[a-z0-9])$ u=box_example&?boo=test&too=best break;
...
proxy_pass http://192.168.200.9:3000;
请告诉我怎么做。