如何禁用 Tomcat 的 Apache Front 缓存?

如何禁用 Tomcat 的 Apache Front 缓存?

我把它放在最后httpd.conf,但什么也没有改变:

#Initialize mod_rewrite
RewriteEngine On
<FilesMatch "\.(html|htm|js|css)$">
FileETag None
<ifModule mod_headers.c>
Header unset ETag
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires "Wed, 12 Jan 1980 05:00:00 GMT"
</ifModule>
</FilesMatch>

相关内容