nginx清除浏览器缓存

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清除浏览器缓存)