第一种:

location /proxy/ {
    proxy_pass http://127.0.0.1/;
}
代理到 URL:http://127.0.0.1/test.html

第二种:

location /proxy/ {
    proxy_pass http://127.0.0.1;  #少/
}
代理到 URL:http://127.0.0.1/proxy/test.html

第三种:

location /proxy/ {
    proxy_pass http://127.0.0.1/aaa/;
}
代理到 URL:http://127.0.0.1/aaa/test.html

第四种(相对于第三种,最后少一个 / )

location /proxy/ {
    proxy_pass http://127.0.0.1/aaa;
}
代理到 URL:http://127.0.0.1/aaatest.html
DigitalOcean Referral Badge
最后修改:2024 年 03 月 28 日
如果觉得我的文章对你有用,请随意赞赏