nginx清除浏览器缓存
2022-09-22 本文已影响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;
}
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;
}