Nginx 的 expires 指令用于设置响应头中的 Cache-ControlExpires 字段,控制浏览器缓存页面的时间。通过合理配置 expires,可以减少服务器负载,提升页面加载速度。

语法

expires [time|epoch|max|off];
  • time:设置缓存时间,如 1h(1小时)、30d(30天)。

  • epoch:设置 ExpiresThu, 01 Jan 1970 00:00:01 GMT,表示不缓存。

  • max:设置 ExpiresThu, 31 Dec 2037 23:59:59 GMT,表示永久缓存。

  • off:禁用 expires 指令。

案例

  1. 缓存静态资源 30 天

location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
    expires 30d;
}
  1. 不缓存 HTML 文件

location ~* \.html$ {
    expires epoch;
}
  1. 永久缓存特定文件

location /static/ {
    expires max;
}
  1. 禁用缓存

location /no-cache/ {
    expires off;
}

注意事项

  • expires 指令通常用于静态资源,动态内容需谨慎使用。

  • 配置后需重启或重载 Nginx 生效。

通过合理配置 expires,可以有效优化网站性能。

本篇文章内容来源于:Nginxexpires:页面缓存时间配置详细说明以及案例