1. 程式人生 > >強制瀏覽器使用本地快取(cache-control/expires),不要和伺服器通訊?

強制瀏覽器使用本地快取(cache-control/expires),不要和伺服器通訊?

nginx 可以這樣配置。
nginx.conf 中

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}