gpt4 book ai didi

html - 设置缓存过期?

转载 作者:技术小花猫 更新时间:2023-10-29 11:49:11 24 4
gpt4 key购买 nike

我用 Chrome 测试了我的网站并得到了以下建议:

The following resources are missing a cache expiration. Resources that do not specify an expiration may not be cached by browsers:
style.css
jquery.marquee.js
jquery.marquee.css
logo.png

如何为这些文件设置缓存过期时间?

最佳答案

设置缓存过期的方法之一是使用 .htaccess 文件。

下面的代码将为其各自的文件类型设置过期时间,例如CSS 文件的有效期为 14 天。

<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 1 month"
ExpiresByType application/javascript "access plus 1 year"
ExpiresByType image/x-ico "access plus 1 year"
ExpiresByType image/jpg "access plus 14 days"
ExpiresByType image/jpeg "access plus 14 days"
ExpiresByType image/gif "access plus 14 days"
ExpiresByType image/png "access plus 14 days"
ExpiresByType text/css "access plus 14 days"
</IfModule>

关于html - 设置缓存过期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7134425/

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