Apache中设置自动清除浏览器缓存
打开Apache的httpd.conf文件1 将 LoadModule headers_module modules/mod_headers.so 这一行注释打开
2 添加以下内容
<FilesMatch "\.(php|js|css|swf|html)$">
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
Header set Pragma "no-cache"
</FilesMatch>
这样就不用每次手动清除浏览器缓存了。
页:
[1]