前言:有时候我们会有这样一个需求,输入www.example.com,自动转发到服务器下的一个项目首页,这时候就需要如下配置
#精确匹配,只匹配www.example.com location = / { …… proxy_pass http://ip:port/item/index; } location / { …… proxy_pass http://ip:port; }
其中“item”为部署的项目名,输入www.example.com之后,会自动跳转http://ip:port/item/index(项目首页)
proxy_pass http://ip:port;这一行要特别注意一下,http://ip:port和http://ip:port/是有区别的
例如:输入www.example.com/item/test.html,前者(http://ip:port)会被代理到http://ip:port/item/test.html,后者(http://ip:port/)会被代理到http://ip:port/test.html