Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将缓存控制代码添加到 .htaccess?
我的网站速度很慢,我发现 35 个静态组件没有一个遥远的到期日期。
如何为此添加过期数据?我被告知这可以在 .htaccess 文件中完成,但我不知道如何。
你可以使用这样的东西:
# Cache Files <filesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> Header set Cache-Control "max-age=604800, public" </filesMatch>
这会将任何以 ico|pdf|flv|jpg..... 结尾的文件缓存 604800 秒,即一周,您可以更改该数字以缓存您认为需要多长时间。