IT俱乐部 Nginx Nginx路径匹配规则小结

Nginx路径匹配规则小结

1.路径配置的分类

在nginx中,一共有4种不同的路径配置方法

= – Exact match
^~ – Preferential match
~ && ~* – Regex match
no modifier – Prefix match

#路径完全一样则匹配
location = path {
}

#路径开头一样则匹配
location ^~ path{
}

#正则匹配,大小写敏感
location ~ path{
}

#正则匹配,大小写不敏感
location ~* path{
}

#前缀匹配
location path{
}

上面的执行顺序是,优先查看Exact match,若存在,则停止。如不存在,则进入Preferential match。之后在进入Regex match,先看大小写敏感的规则,再看大小写不敏感的规则.最后进入Prefix match.

= –> ^~ –> ~ –> ~* –> no modifier

在每一个同类型的匹配规则中,按照他们出现在配置文件中的先后,一一对比。

2.例子

location /match {  
  return 200 'Prefix match: will match everything that starting with /match';  
}  
  
location ~* /match[0-9] {  
  return 200 'Case insensitive regex match';  
}  
  
location ~ /MATCH[0-9] {  
  return 200 'Case sensitive regex match';  
}  
  
location ^~ /match0 {  
  return 200 'Preferential match';  
}  
  
location = /match {  
  return 200 'Exact match';  
}  

/match     # => ‘Exact match’  
/match0    # => ‘Preferential match’  
/match1    # => ‘Case insensitive regex match’  
/MATCH1    # => ‘Case sensitive regex match’  
/match-abc # => ‘Prefix match: matches everything that starting with /match’  

到此这篇关于Nginx路径匹配规则小结的文章就介绍到这了,更多相关Nginx路径匹配内容请搜索IT俱乐部以前的文章或继续浏览下面的相关文章希望大家以后多多支持IT俱乐部!

本文收集自网络,不代表IT俱乐部立场,转载请注明出处。https://www.2it.club/server/nginx/8105.html
上一篇
下一篇
联系我们

联系我们

在线咨询: QQ交谈

邮箱: 1120393934@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部