美文网首页
nginx清除浏览器缓存

nginx清除浏览器缓存

作者: 一个健康马 | 来源:发表于2022-09-22 18:45 被阅读0次

    location ~ .*.(html)$ {
    add_header Cache-Control no-store;
    add_header Pragma no-cache;

        }
    location  ~ .*.(js|css|gif|jpg|jpeg|png|bmp|swf)$   {
    add_header Cache-Control no-store;
    }

    相关文章

      网友评论

          本文标题:nginx清除浏览器缓存

          本文链接:https://www.haomeiwen.com/subject/frblnrtx.html