博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx location 匹配规则
阅读量:5461 次
发布时间:2019-06-15

本文共 1031 字,大约阅读时间需要 3 分钟。

匹配规则

= > ^~ > 顺序依次匹配正则表达式 location(如果没有, 就匹配最长的) >最长匹配的 location

/Test1 匹配第六条/Test1/ 比第一个长, 所以匹配第三条/Test1/Test2 匹配第二条/Test1/Test2/ 第四条/test1/Test2 第二条server {        server_name location.liuhonghe.me;        error_log  logs/error.log  debug;        #root html/;        default_type text/plain;        merge_slashes off;        location ~ /Test1/$ { # 第一条                return 200 'first regular expressions match!\n';          }          location ~* /Test1/(\w+)$ { # 第二条                  return 200 'longest regular expressions match!\n';          }          location ^~ /Test1/ { # 第三条                  return 200 'stop regular expressions match!\n';          }          location /Test1/Test2 { # 第四条                  return 200 'longest prefix string match!\n';          }          location /Test1 { # 第五条                  return 200 'prefix string match!\n';          }          location = /Test1 { # 第六条                  return 200 'exact match!\n';          }  }

转载于:https://www.cnblogs.com/reaperhero/articles/10922955.html

你可能感兴趣的文章
第五章 循环结构反思
查看>>
WebConfig配置文件有哪些不为人知的秘密?
查看>>
自动控制原理的三不管地带之——开闭环函数特征方程原理
查看>>
HDU 2001 计算亮点间的距离
查看>>
spring学习笔记--quartz和定时任务执行
查看>>
ASP.NET页面刷新样式改变解决方法
查看>>
Redis- 简单操作命令
查看>>
洛谷 P2827 蚯蚓 解题报告
查看>>
考核题 6
查看>>
hadoop Datanode多目录配置
查看>>
一段获取windows环境变量的代码
查看>>
test
查看>>
MKReverseGeocoder 过时,IOS5中使用CLGeocoder
查看>>
@DataProvider Method 参数传递
查看>>
The Tao to Excellent 2
查看>>
Redis 命令
查看>>
Cocos2d-js 3.0 颜色变换(调整sprite/图片的色调)
查看>>
织梦仿站第一课
查看>>
java step1:基础知识3
查看>>
Hadoop 发行版本 Hortonworks 安装详解(二) 安装Ambari
查看>>