Nginx禁止html等缓存
2020-12-28 20:34
阅读:622
标签:title cache lang 暴力 页面 运维 +++ 莫名其妙 class +++ 在本地开发的时候,经常会碰到缓存引起的莫名其妙的问题,最暴力的方式就是清掉浏览器的缓存,或者使用Ctrl + F5,Shift + F5强制刷新页面。 有时候按了好几下,缓存还是清不掉,只能暂时禁用浏览器静态资源缓存了,配置如下: Nginx禁止html等缓存 标签:title cache lang 暴力 页面 运维 +++ 莫名其妙 class 原文地址:https://www.cnblogs.com/brady-wang/p/13830109.html
date="2020-10-16"
title="Nginx禁止html等缓存"
tags=["nginx"]
categories=["运维"]
+++location ~.*\.(js|css|html|png|jpg)$
{
add_header Cache-Control no-cache;
}
评论
亲,登录后才可以留言!