104-Nginx 禁止静态文件缓存
2017-05-27 本文已影响635人
霄峰
在nginx配置文件中加入:
location ~ .*\.(css|js|swf|php|htm|html )$ {
add_header Cache-Control no-store;
}
在nginx配置文件中加入:
location ~ .*\.(css|js|swf|php|htm|html )$ {
add_header Cache-Control no-store;
}