nginx位置代字号

时间:2016-08-01 14:03:32

标签: regex nginx nginx-location

在Nginx位置指令中做什么波浪号(〜)?即:

location ~* \.(png|gif|jpg)$ {
  [...configuration]
}

1 个答案:

答案 0 :(得分:6)

波浪号(〜)是Nginx的标识符,让它知道位置块正在使用REGEX来匹配该位置。

“〜”= REGEX匹配,区分大小写

“〜*”= REGEX匹配,不区分大小写

Nginx Docs