Location指令的作用是根据用户请求的URI来执行不同的应用,也就是根据用户请求的网站URL进行匹配,匹配成功即进行相关的操作。
1.精确匹配,/后面不能带任何字符:
server { listen 80; server_name www.baidu.com; #精确匹配,注解后面不能带任何字符 location =/ { proxy_pass http://127.0.0.1:8080; index index.html index.htm; } }
2.匹配所有以/开头请求:
server { listen 80; server_name www.baidu.com; #匹配所有以/开头请求 location / { proxy_pass http://127.0.0.1:8080; index index.html index.htm; } }
3.比如以开头/ylw_8080拦截 默认开启不区分大小写:
server { listen 80; server_name www.baidu.com; ### 以开头/ylw_8080 最终跳转到http://127.0.0.1:8080/; location /ylw_8080/ { proxy_pass http://127.0.0.1:8080/; index index.html index.htm; } ### 以开头/ylw_8080 最终跳转到http://127.0.0.1:8081/; location /ylw_8081/ { proxy_pass http://127.0.0.1:8081/; index index.html index.htm; } }
注意:开头区分大小写!
?
原文:https://blog.51cto.com/u_15294985/2994036