首頁 > 運維 > Nginx > Nginx路徑比對規則是什麼

Nginx路徑比對規則是什麼

王林
發布: 2023-05-21 10:37:10
轉載
3476 人瀏覽過

1.路徑配置的分類

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

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

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

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

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

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

#前缀匹配
location path{
}
登入後複製

如果存在精確匹配,則先執行精確匹配。如不存在,則進入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'  
/match2  # => 'Preferential match'  
/match2  # => 'Preferential match'  
#/match2  # => => ; 'Case insensitive regex match'  

/MATCH1    # => 'Case sensitive regex match'  
/match-abc # => 'Prefix match: matches everything that starting with /match'  ##### #

以上是Nginx路徑比對規則是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板