nginx的优先级和匹配方式

Nginx的location的优先级和匹配方式:

在http模块当中有server,在server模块才有location,location匹配的是uri

/test

/image

在一个server当中有多个location,如何来确定匹配那个location

Nginx支持正则表达式:

^:字符串的起始位置

$:字符串的结束位置

*:匹配所有

?:匹配前面的字符0次或一次

.:任意单个字符

{n}:连续重复出现次

{n,m}:连续出现n-m次

  1. z0-9A-Z]

c\]:匹配单个字符c ():分组 \|:或 ### Location匹配的分类: Location / Location -\* 1. 精确匹配location=/test{..} 要填完整的路径,一个字符都不能少,不能错 1. 正则匹配location \~ / {} Location \^\~:前缀匹配,以什么为开头 -:区分大小写进行匹配 \~\*:不区分大小写匹配 !-:区分大小写取反匹配 !-\*:不区分大小写取反匹配 1. location /test {} 一般匹配 Location匹配成功,不在继续向下匹配 ### 小实验: ![](https://file.jishuzhan.net/article/1714554895102644225/54af043201e32b30e12cd5db5737bd30.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/faed4907291b8a43f96a20ebca6080c5.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/e923120e86f64d2e76885122e4cdafcf.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/7ea1f2b0338739030914d21437ddc78f.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/0dd14d60a979d946b57c1b0b543756a7.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/3d0679317b9883b8e59410af250b4e1f.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/6b723f9b464090bc5465e3425d3fa0f4.webp) ### ocation匹配分优先级: ****精确匹配优先级最高,第二优先级是正则匹配,一般或通用匹配优先级最低**** Location=完整路径\>location\^\~\>location\~,\~\*\>location /test \> location / 工作当中配置location的原则是什么:(重要) 1. 网首页:一律用精确匹配,网站首页一般都是一个静态页面内,一般都匹配网站的根工作目录 location= / {} 2. 处理静态文件的请求:目录匹配和后缀匹配 location \^-/static {} 第二种方式用正则匹配location -\*\\. {html\|jpg\|jepg\|gif\|png}${} 3. 一般规则:动态请求,把动态请求转发到后端的动态页面服务器 location / { proxy_pass http://tomcat.server} ### ****Nginx的重定向:**** Rewrite:结合了Nginx提供的全局变量和自定义的变量,结合正则表达式以及标志位实现url重写以及重 定向 Rewrite执行顺序: 1. 先执行server块里面的rewrite 2. 执行location里面定义的rewrite 3. 选定location中的rewrite Rewrite中可以支持if语句,但是不支持else语句 Rewrite语法: Rewrite\\\[flag

<regex>:正则表达式

<replacmnet>:跳转的正则表达式

flag\]:标志位 "标记" Flag: Last:本条规则匹配完成后,继续向下匹配所有的location URI规则 ![](https://file.jishuzhan.net/article/1714554895102644225/280d8a689a4c040e72b884174462d610.webp) Break:本条规则匹配完之后立即终止,页面内容变化,uri不变 Redirect:****临时重定向****302 uri的地址会发生变化 Permanent:****永久重定向****301 uri地址也会发生变化 rewrite /test/(.\*) /ky32/$1 permanent; .\*:匹配所有 $1:表示捕获组$1引用正则表达式的第一个捕获组 www.ky32.com/test/index.html 1.jpg www.ky32.com/ky32/index.html 1.jpg 搜索引擎的权重,永久重定向会加入搜索引擎的排名 临时不会加搜索引擎的权重 ### 实验验证: 永久重定向 ![](https://file.jishuzhan.net/article/1714554895102644225/f2188c6ea0812cf124a7b2dff9423f41.webp) 临时重定向 ![](https://file.jishuzhan.net/article/1714554895102644225/7339e1287a980e61e12e9c6ca36663c2.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/0be7f74c3cc1171df038475c4bae9ca8.webp) ****Break跳转,用的比较多,跳转的时候不会改变uri**** ![](https://file.jishuzhan.net/article/1714554895102644225/6371bc79ad16b93eaa3be5ee3274d6b8.webp) Last:继续匹配 ![](https://file.jishuzhan.net/article/1714554895102644225/f7dff83aea5d5c2098a64eee6a29fe6b.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/0242f1fcacf59beb86cd687cd87e2109.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/f5cb768ada41b556ac63dc95071c0bb8.webp) ****报错日志:**** ![](https://file.jishuzhan.net/article/1714554895102644225/78d006c72a36580f0ddf68858896dd67.webp) internal redirection cycle while processing 处理请求时发生了重写或者内部重定向循环,Nginx循环最多可以循环十次,超过十次会报错 解决方法: ![](https://file.jishuzhan.net/article/1714554895102644225/626a7d827ca2094e1217b05719a1406e.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/8b59efe73e19677a343b2e342f4e9aa6.webp) 总结:rewrite和location似乎两个都可跳转,但是区别在于rewrite是在同一域名之内更改获取资源的路径,location是对路径访问控制 ### 三个实验: 1. 基于域名的跳转 www.kgc.com但是公司业务变更,迁移到了新的域名www.benet.com代替,但是依旧不能被废除,访问kgc可以跳转到bennet,且匹配得分uri不能变 ![](https://file.jishuzhan.net/article/1714554895102644225/f30b27355d9b4a93d5b925e3f092deb2.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/538dc8e9af3456870678381704663ad3.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/f3af22dc4dc5a957634b6404356668e4.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/19e7277a8b6b0dd708fb2b52cc6c4a7f.webp) 2.基于ip访问跳转 公司业务有一个新版本要上线了,用户访问网站统一显示固定的维护页面,只有公司的192.168.233.61可以访问,其他都是维护页面 ![](https://file.jishuzhan.net/article/1714554895102644225/b46c9bbcb151c63876cbdf2e0afd3d73.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/78f6a58cc7028a267076619c9b792c9b.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/d93fc38440df6c1fbcc1758ddf6df613.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/fdd0dc650ae85c9dd1cd762cbf435de9.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/ba993f2320105aa553e1625e30891c0a.webp) 真机无法访问: ![](https://file.jishuzhan.net/article/1714554895102644225/e054b8d965f7ab464ae666a28c0eccf6.webp) 基于目录下.php访问.php跳转到新的页面 ![](https://file.jishuzhan.net/article/1714554895102644225/a6b54b20991a01d8ec9ff6fcb19bb27d.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/0165d1f8bad05a3c762d1104634680d3.webp) 随后做一个映射 ![](https://file.jishuzhan.net/article/1714554895102644225/049ef1fbaf2a7e8ba2c7176432ab3da0.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/3939d7eebdea5e04f0d1b46ed879ad96.webp) ![](https://file.jishuzhan.net/article/1714554895102644225/b463d6438e882acacbd6086ee527da01.webp)

相关推荐
电星托马斯40 分钟前
Linux系统CentOS 6.3安装图文详解
linux·运维·服务器·程序人生·centos
啞謎专家43 分钟前
CentOS中挂载新盘LVM指南:轻松扩展存储空间,解决磁盘容量不足问题
linux·运维·服务器
s_little_monster1 小时前
【Linux】进程信号的捕捉处理
linux·运维·服务器·经验分享·笔记·学习·学习方法
一大Cpp1 小时前
Ubuntu与本地用户交流是两种小方法
linux·运维·ubuntu
小王不会写code1 小时前
CentOS 7 镜像源失效解决方案(2025年)
linux·运维·centos
zyplanke1 小时前
CentOS Linux升级内核kernel方法
linux·运维·centos
ghostwritten2 小时前
Docker Registry Clean
运维·docker·容器
niuniu_6662 小时前
简单的自动化场景(以 Chrome 浏览器 为例)
运维·chrome·python·selenium·测试工具·自动化·安全性测试
这儿有一堆花3 小时前
Kali Linux 2025.1a:主题焕新与树莓派支持的深度解析
linux·运维·服务器
wanhengidc4 小时前
算力服务器和普通服务器之间的不同之处
运维·服务器