在Apache2的负具体FilesMatch(Negative Specific FilesMatc

2019-10-20 12:18发布

我想设置到期日为所有的文件,除了2-3文件如何在Apache2的使用负filematch

<FilesMatch "^(jquery-2.1.1.min.js|home_bg.png|jquery.ui.widget.js|jquery.placeholder.js|jquery.jscrollpane.js|jquery-ui-1.10.4.custom.min.js)$">
  ExpiresActive on 
  ExpiresDefault "access plus 1 month"
</FilesMatch>

现在我使加入其他所有到文件匹配列表出现这种情况。

反正是有使用类似FilesNotMatch

<FilesNotMatch "^(style.css|responsive.css)$">
  ExpiresActive on 
  ExpiresDefault "access plus 1 month"
</FilesNotMatch>

或类似的东西

<FilesMatch "!^(style.css|responsive.css)$">
  ExpiresActive on 
  ExpiresDefault "access plus 1 month"
</FilesMatch>

Answer 1:

尝试:

<FilesMatch "(?<!style\.css|responsive\.css)$">
  ExpiresActive on 
  ExpiresDefault "access plus 1 month"
</FilesMatch>


Answer 2:

尝试这个:

<FilesMatch "^(?!(?:style|responsive)\.css).*$">
  ExpiresActive on 
  ExpiresDefault "access plus 1 month"
</FilesMatch>


文章来源: Negative Specific FilesMatch in Apache2