Nginx配置不缓存html

Nginx配置不缓存html

    • 1. 配置nginx不缓存html
      • 1.1 修改配置文件
    • 1.2 验证
    • Vue项目修改根目录index.html

1. 配置nginx不缓存html

1.1 修改配置文件

location / {
 expires 1h;
 root /home/html;
 index index.html index.htm;
 ## html不缓存 
 if ($request_filename ~* .*\.(htm|html)$){
     add_header Cache-Control "no-store";
 }
}

1.2 验证

Nginx配置不缓存html_第1张图片

Vue项目修改根目录index.html

//head中添加以下代码,会使所有打css/js资源重新加载
<meta http-equiv="pragram" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">

你可能感兴趣的:(linux,nginx,缓存,java)