nginx location优先级详解 location nginx 嵌套 location nginx 路径 nginx location roo

WBOY
发布: 2016-07-29 08:49:55
原创
5198 人浏览过

nginx中location有几种:

1.前缀,可以有=或^~修饰,比如

location  /       /开头的

location /img/     /img/开头的

location = /a.htm      刚好/a.htm

location ^~ /d    匹配后不再检查正则表达式location

2.正则表达式,固定~或~*(不区分大小写)开头,比如:

location ~  \.html$

location ~*  \.gif$

同时有多个location时,优先级如下:

1.Test the URI against all prefix strings.

和所有前缀比较
2.The = (equals sign) modifier defines an exact match of the URI and a prefix string. If the exact match is found, the search stops.
某个匹配前缀有=,则结束匹配
3.If the ^~ (caret-tilde) modifier prepends the longest matching prefix string, the regular expressions are not checked.
最长匹配的有 ^~ 则结束匹配
4.Store the longest matching prefix string.
保存最长匹配
5.Test the URI against regular expressions.
再检查 ~开头的正则表达式
6.Break on the first matching regular expression and use the corresponding location.
第一个匹配的正则表达式,结束匹配
7.If no regular expression matches, use the location corresponding to the stored prefix string.

没有正则匹配,则使用刚才最长前缀

以上就介绍了nginx location优先级详解,包括了location,nginx方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!