gpt4 book ai didi

javascript - 如何缓存png,ico,jpeg

转载 作者:行者123 更新时间:2023-11-29 22:02:01 25 4
gpt4 key购买 nike

如何使用 htaccess 将图像缓存在我的网站上 2 天:

1 x 60 x 60 x 24 x 2 = 172800s

所以我想缓存'png, jpeg, jpg, ico, js'。我怎样才能用 htaccess 做到这一点

最佳答案

您可以使用 mod_expires 模块(基于文件的 MIME 类型):

<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault A300

# png, jpeg, jpg, ico, js expire after 2 days
ExpiresByType image/gif A172800
ExpiresByType image/png A172800
ExpiresByType image/jpg A172800
ExpiresByType image/x-icon A172800
ExpiresByType application/x-javascript A172800
</ifModule>

或者 mod_headers 模块(基于文件扩展名):

<ifModule mod_headers.c>
ExpiresActive On

# png, jpeg, jpg, ico, js expire after 2 days
<filesMatch ".(gif|png|jpg|jpeg|ico|js)$">
Header set Cache-Control "max-age=172800"
</filesMatch>
</ifModule>

最后一个为您提供了更多选项,例如强制无缓存等。

关于javascript - 如何缓存png,ico,jpeg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23251158/

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