我尝试在 httpd.conf (Windows) 中使用以下配置为我的 GWT 应用程序禁用缓存,但它不起作用:
<filesMatch ".*nocache.*">
FileETag None
<IfModule headers_module>
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, 11 Jan 1984 05:00:00 GMT"
</IfModule>
</filesMatch>
但我仍然在服务器的响应中看不到任何这些标头。任何想法?(headers_module 已激活)