Nginx location 正则篇

Posted 二十六度半

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx location 正则篇相关的知识,希望对你有一定的参考价值。



location 前缀


没有前缀               匹配以指定模式开头的location


=                          精准匹配,不是以指定模式开头


~                          正则匹配,区分大小写


~*                         正则匹配,不区分大小写


^~                         非正则匹配,匹配以指定模式开头的location


 

location匹配顺序

  • 多个正则location直接按书写顺序匹配,成功后就不会继续往后面匹配
  • 普通(非正则)location会一直往下,直到找到匹配度最高的(最大前缀匹配)
  • 当普通location与正则location同时存在,如果正则匹配成功,则不会再执行普通匹配 
  • 所有类型location存在时,“=”匹配  >  “^~”匹配  >  正则匹配  >  普通(最大前缀匹配)

 
location匹配路径

alias路径在匹配后直接替换,root路径在匹配后追加到location匹配到的路径之后


以上是关于Nginx location 正则篇的主要内容,如果未能解决你的问题,请参考以下文章

Nginx Location 指令语法解析

nginx-location正则表达式匹配规则及动静分离

Nginx正则表达式location匹配Rewrite重写详解

Nginx的Location正则表达式

Nginx 正则匹配配置

nginx Location正则表达式