标签: regex configuration nginx location
在Nginx的文档中,我注意到某些位置正则表达式看起来像
location ~ \..*/.*\.php$ {
有些看起来像
location ~* \.(txt|log)$ {
这两种正则表达形式(~和~*)之间是否存在差异
~
~*
答案 0 :(得分:4)
〜执行区分大小写的匹配
〜*执行不区分大小写的匹配
您也可以使用!〜或!〜*表示“不匹配......”