美文网首页
Nginx禁用html、js、css缓存

Nginx禁用html、js、css缓存

作者: yjwlyy | 来源:发表于2018-04-20 15:25 被阅读0次

在本地开发的时候,经常会碰到缓存引起的莫名其妙的问题,最暴力的方式就是清掉浏览器的缓存,或者使用Ctrl + F5,Shift + F5强制刷新页面。
有时候按了好几下,缓存还是清不掉,只能暂时禁用浏览器静态资源缓存了,配置如下:

location ~.*\.(js|css|html|png|jpg)$
{
    add_header Cache-Control no-cache;
}

或者

location /js
{
    add_header Cache-Control no-cache;
}

现在,按F5就行了!

相关文章

网友评论

      本文标题:Nginx禁用html、js、css缓存

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