2~3個のファイルを除くすべてのファイルに有効期限を設定したい
<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>