其他分享
首页 > 其他分享> > 正则表达式查找匹配文件扩展名的文件,除非文件名包含字符串

正则表达式查找匹配文件扩展名的文件,除非文件名包含字符串

作者:互联网

我在nginx中为特定文件启用了缓存,如下所示:

location ~* \.(?:css|js)${
access_log off;
add_header Cache-Control "no-transform,public,max-age=31536000,s-max-age=31536000";
expires 1y;
}   

我想在这里做的是排除所有匹配模式i18n – *.js的文件,结果缓存除了以i18n开头的所有.js文件.

我尝试进行否定查找以排除模式,但由于非捕获组,它不能用作例外:

location ~* \.(?!i18n-.*\.js)(?:css|js)${
        access_log off;
        add_header Cache-Control "no-transform,public,max-age=31536000,s-max-age=31536000";
        expires 1y;
}

什么是智能解决方案?我不是正则表达式专家,所以简短的解释也会有所帮助.

解决方法:

官方文档describes如何遍历位置树:

Rregular expressions are checked, in the order of their appearance in
the configuration file. The search of regular expressions terminates
on the first match, and the corresponding configuration is used. If no
match with a regular expression is found then the configuration of the
prefix location remembered earlier is used.

基于此配置如下:

location ~* \.(i18n-.*\.js)${
  access_log off;
  expires off;
}

location ~* \.(css|js)${
  access_log off;
  expires 1y;
  add_header Cache-Control public;
}  

注意:除非用作变量docs,否则正则表达式中的问号是多余的:

A named regular expression capture can be used later as a variable:

server {
  server_name   ~^(www\.)?(?<domain>.+)$;

  location / {
    root   /sites/$domain;
  }
}

如果使用?:语法跳过捕获组,则需要稍后使用,否则可以删除以简化位置语法.

标签:regex-lookarounds,nginx,regex,browser-cache,nginx-location
来源: https://codeday.me/bug/20190828/1753443.html