前置测试拜访域名: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仄台别的相闭文章!
发表评论 取消回复