Han*_*com 7 .htaccess mod-expires
我看过的所有过期标题文章都或多或少地提供了以下解决方案:
ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000
Run Code Online (Sandbox Code Playgroud)
但它对我没有意义,因为我知道我的哪些图像会改变,哪些不会改变,所以我希望能够为特定的图像文件添加特定的到期日期.我该怎么做?
你可以使用FilesMatch,例如.
<FilesMatch "\.(js|css)$">
ExpiresActive on
ExpiresDefault "access plus 1 month"
</FilesMatch>
Run Code Online (Sandbox Code Playgroud)
或者对于某些特定文件:
<FilesMatch "^(example.js|sample.css)$">
ExpiresActive on
ExpiresDefault "access plus 1 month"
</FilesMatch>
Run Code Online (Sandbox Code Playgroud)