码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx的location匹配规则

时间:2018-01-21 13:47:09      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:permanent   uri   sharp   usr   nbsp   dir   sha   访问   匹配   

一 Nginx的location语法

location [=|~|~*|^~] /uri/ { … }
  • =         严格匹配。如果请求匹配这个location,那么将停止搜索并立即处理此请求
  • ~         区分大小写匹配(可用正则表达式)
  • ~*       不区分大小写匹配(可用正则表达式)
  • !~       区分大小写不匹配
  • !~*     不区分大小写不匹配
  • ^~      如果把这个前缀用于一个常规字符串,那么告诉nginx 如果路径匹配那么不测试正则表达式

示例1:

Nginx的location匹配规则

标签:permanent   uri   sharp   usr   nbsp   dir   sha   访问   匹配   

原文地址:https://www.cnblogs.com/duhuo/p/8323812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!