ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

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

2019-08-28 16:10:04  阅读:385  来源: 互联网

标签:regex-lookarounds nginx regex browser-cache nginx-location


我在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

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有