1. proxy_pass 配置的url後面,不加'/',那麼重定向後,追加location後的路徑。
好比server_name: 10.9.11.225
location /proxy1/{
proxy_pass http://10.9.11.166:8540/;
}
location /proxy2/ {
proxy_pass http://10.9.11.166:8540/haha/;
}
若是訪問 10.9.11.225/proxy1/ 會代理到http://10.9.11.166:8540/
若是訪問 10.9.11.225/proxy2/ 會代理到http://10.9.11.166:8540/haha/
2. 若是proxy_pass配置的url後面,不加'/',那麼重定向後,整個替換location後的路徑。
location /proxy3/{
proxy_pass http://10.9.11.166:8540;
}
location /proxy4/ {
proxy_pass http://10.9.11.166:8540/haha;
}
訪問http://10.9.11.225/proxy/就會被反向代理到http://10.9.11.166:8540/proxy/
訪問http://10.9.11.225/proxy4/index.html就會被反向代理到http://10.9.11.166:8540/hahaindex.html
html
3.rewrite 參數簡介url
location /momo/{代理
rewrite ^/momo/?(.*) /$1 break;server
proxy_pass http://front;htm
...it
}io
uri>>>lixiaoxuan.com/momo/test/hello? 重定向到了哪裏?
是front/momo/test/hello......嗎? 答案是錯誤的,由於有一個rewrite,這個配置又是幹啥的?
基本語法: rewrite regex replacement [flag];
上下文:server, location, if
flag:break,重寫後,不發起新的請求,直接往下走
匹配'/maimai/'重寫後,uri變成了front/test/hello?
再根據front配置重定向到其餘反向代理