nginx 프로필 proxypass URL 끝 에 / (사선) 을 추가 하지 않 는 것 과 의 차이
4625 단어 nginx
1
location /tobaidu {
proxy_pass http://127.0.0.1:8087;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1:8087/tobaidu
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/tobaidu/
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/tobaidu/xxxx
2
location /tobaidu {
proxy_pass http://127.0.0.1:8087/define;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1:8087/define
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/define/
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/define/xxxx
3
location /tobaidu/ {
proxy_pass http://127.0.0.1:8087;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1/tobaidu/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/tobaidu/
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/tobaidu/xxxx
4
location /tobaidu/ {
proxy_pass http://127.0.0.1:8087/define;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1/tobaidu/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/define
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/definexxxx
5
location /tobaidu {
proxy_pass http://127.0.0.1:8087/;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1:8087/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087//
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087//xxxx
6
location /tobaidu {
proxy_pass http://127.0.0.1:8087/define/;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1:8087/define/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/define//
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/define//xxxx
7
location /tobaidu/ {
proxy_pass http://127.0.0.1:8087/;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1/tobaidu/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/xxxx
8
location /tobaidu/ {
proxy_pass http://127.0.0.1:8087/define/;
}
curl http://127.0.0.1/tobaidu
http://127.0.0.1/tobaidu/
curl http://127.0.0.1/tobaidu/
http://127.0.0.1:8087/define/
curl http://127.0.0.1/tobaidu/xxxx
http://127.0.0.1:8087/define/xxxx
결론.
/tobaidu/xxxx
의 /xxxx
부분