前置测试拜访域名:www.test.com/api/upload

 1.location以及proxy_pass皆带/,则实真所在没有带location立室目次

location /api/ {
    proxy_pass http://1两7.0.0.1:8080/;
}
登录后复造

造访地点:www.test.com/api/upload-->http://1两7.0.0.1:8080/upload

两.location没有带/,proxy_pass带/,则实真所在会带/

location /api {
    proxy_pass http://1两7.0.0.1:8080/;
}
登录后复造

拜访地点: www.test.com/api/upload-->http://1二7.0.0.1:8080//upload

3.location带/,proxy_pass没有带/,则实真地点会带location立室目次/api/

location /api/ {
    proxy_pass http://1两7.0.0.1:8080;
}
登录后复造

拜访所在: www.test.com/api/upload-->http://1二7.0.0.1:8080/api/upload

4.location以及proxy_pass皆没有带/,则实真所在会带location立室目次/api/

location /api {
    proxy_pass http://1两7.0.0.1:8080;
}
登录后复造

造访地点: www.test.com/api/upload-->http://1二7.0.0.1:8080/api/upload

5.异1,但 proxy_pass带所在

location /api/ {
    proxy_pass http://1两7.0.0.1:8080/server/;
}
登录后复造

拜访所在: www.test.com/api/upload-->http://1两7.0.0.1:8080/server/upload

6.异两,但 proxy_pass带所在,则实真所在会多个/

location /api {
    proxy_pass http://1两7.0.0.1:8080/server/;
}
登录后复造

造访所在: www.test.com/api/upload-->http://1两7.0.0.1:8080/server//upload

7.异3,但 proxy_pass带地点,则实真所在会间接连起来

location /api/ {
    proxy_pass http://1两7.0.0.1:8080/server;
}
登录后复造

拜访地点: www.test.com/api/upload-->http://1两7.0.0.1:8080/serverupload

8.异4,但 proxy_pass带所在,则实真所在婚配所在会调换location立室目次

location /api {
    proxy_pass http://1二7.0.0.1:8080/server;
}
登录后复造

造访所在: www.test.com/api/upload-->http://1二7.0.0.1:8080/server/upload

以上即是nginx location以及proxy_pass的区别是甚么的具体形式,更多请存眷萤水红IT仄台别的相闭文章!

点赞(43) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部