Nginx教程

Nginx中proxy_pass末尾带斜杠/和不带的区别

本文主要是介绍Nginx中proxy_pass末尾带斜杠/和不带的区别,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
  • 如果proxy_pass末尾不带/,proxy_pass会拼接location的路径
  • 如果proxy_pass末尾带/,proxy_pass不拼接location的路径

 

一、proxy_pass末尾有斜杠

location  /api/ {
    proxy_pass http://127.0.0.1:8000/;
}

请求地址:http://localhost/api/test
转发地址:http://127.0.0.1:8000/test

二、proxy_pass末尾无斜杠

location  /api/ {
    proxy_pass http://127.0.0.1:8000;
}

 

请求地址:http://localhost/api/test
转发地址:http://127.0.0.1:8000/api/test

三、proxy_pass包含路径,且末尾有斜杠

location  /api/ {
    proxy_pass http://127.0.0.1:8000/user/;
}

 

请求地址:http://localhost/api/test
转发地址:http://127.0.0.1:8000/user/test

 

四、proxy_pass包含路径,末尾无斜杠

location  /api/ {
    proxy_pass http://127.0.0.1:8000/user;
}

  

请求地址:http://localhost/api/test
转发地址:http://127.0.0.1:8000/usertest

 

这篇关于Nginx中proxy_pass末尾带斜杠/和不带的区别的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!