gpt4 book ai didi

.htaccess - 为特定图像添加过期标题

转载 作者:行者123 更新时间:2023-12-04 06:49:43 24 4
gpt4 key购买 nike

我看过的所有过期标题文章或多或少都提供了以下解决方案:

ExpiresByType image/gif A2592000
ExpiresByType image/png A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/jpeg A2592000

但这对我来说没有意义,因为我知道我的哪些图像会改变,哪些不会,所以我希望能够为特定的图像文件添加特定的到期日期。我该怎么办?

最佳答案

您可以使用 FilesMatch ,例如。

<FilesMatch "\.(js|css)$">
ExpiresActive on
ExpiresDefault "access plus 1 month"
</FilesMatch>

或者对于某些特定文件:
<FilesMatch "^(example.js|sample.css)$">
ExpiresActive on
ExpiresDefault "access plus 1 month"
</FilesMatch>

关于.htaccess - 为特定图像添加过期标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2508783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com