location
是Nginx中的块级指令(block directive),,location指令的功能是用来匹配不同的url请求,进而对请求做不同的处理和响应,这其中较难理解的是多个location的匹配顺序,本文会作为重点来解释和说明。
开始之前先明确一些约定,我们输入的网址叫做请求URI
,nginx用请求URI与location中配置的URI
做匹配。
匹配URL类型,有四种参数可选,当然也可以不带参数
location [ = | ~ | ~* | ^~ |@] uri { … }
默认的location 块 后面是有一个 斜杆的,表示模糊匹配所有uri。
(1) “=”
,精确匹配
location = /abc/ { ..... } # 只匹配http://abc.com/abc #http://abc.com/abc [匹配成功] #http://abc.com/abc/index [匹配失败]
(2) “~”
,执行正则匹配,区分大小写。
location ~ /Abc/ { ..... } #http://abc.com/Abc/ [匹配成功] #http://abc.com/abc/ [匹配失败]
(3)“~*”
,执行正则匹配,忽略大小写
location ~* /Abc/ { ..... } # 则会忽略 uri 部分的大小写 #http://abc.com/Abc/ [匹配成功] #http://abc.com/abc/ [匹配成功]
(4)“^~”
,表示普通字符串匹配上以后不再进行正则匹配。
location ^~ /index/ { ..... } #以 /index/ 开头的请求,都会匹配上 #http://abc.com/index/index.page [匹配成功] #http://abc.com/error/error.page [匹配失败]
(5)不加任何规则时,默认是大小写敏感,前缀匹配,相当于加了“~”与“^~”
location /index/ { ...... } #http://abc.com/index [匹配成功] #http://abc.com/index/index.page [匹配成功] #http://abc.com/test/index [匹配失败] #http://abc.com/Index [匹配失败] # 匹配到所有uri
(6)“@”
,nginx内部跳转
location /index/ { error_page 404 @index_error; } location @index_error { ..... } #以 /index/ 开头的请求,如果链接的状态为 404。则会匹配到 @index_error 这条规则上。
=
> ^~
> ~ | ~*
> 最长前缀匹配
> /