nginx静态文件不设置缓存


找到nginx安装目录下的nginx.conf文件,再nginx里面添加如下的内容

location / {

add_header Cache-Control no-cache;

add_header Pragma no-cache;

add_header Expires 0;

}

猜你喜欢

转载自www.cnblogs.com/mr-wuxiansheng/p/11348149.html