打開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>
這樣就不用每次手動清除浏覽器緩存了。