前端用nginx部署时,用户访问页面有缓存,如何设置禁用缓存

在nginx配置文件中进行配置:

location / {
    root /dest_gl;
    index  index.html index.htm;
    add_header Cache-Control "no-cache, no-store, must-revalidate";
    add_header Pragma "no-cache";
    add_header Expires 0;
}

配置完毕后,可禁用缓存,当用户访问浏览器时,不会再有缓存内容。 

你可能感兴趣的:(前端,nginx,缓存)