您的位置:首页 > 其它

强制浏览器使用本地缓存(cache-control/expires),不要和服务器通信?

2017-06-04 23:25 549 查看
nginx 可以这样配置。
nginx.conf 中

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐