+
82
-

nginx如何禁止静态文件缓存?

每次改js或css时候都没反应,原来是nginx的缓存导致的,请问nginx如何禁止静态文件缓存?

网友回复

+
1
-

在nginx配置文件中加入:

location ~ .*\.(css|js|swf|php|htm|html )$ {
add_header Cache-Control no-store;
add_header Pragma no-cache;
add_header Expires 0;
}


by bfwop
我知道答案,我要回答