proxy_pass http://<目标服务器>:<端口>
rewrite ^ $request_uri; # 自动补充index.html rewrite ^/$ /index.html; # 补齐真正的路径 rewrite ^/(.*)$ /newpath/$1 break;