gpt4 book ai didi

windows - 为 Apache 中的 *nocache*-Files 禁用缓存

转载 作者:可可西里 更新时间:2023-11-01 10:07:44 26 4
gpt4 key购买 nike

我尝试在 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>

但我仍然无法在服务器的响应中看到任何这些 header 。任何的想法? (headers_module 被激活)

最佳答案

感谢托马斯的帮助。我认为问题是因为使用 mod_jk apache 并没有真正发送文件。我找到了 this thread这很有帮助。我只需将 FilesMatch 替换为 LocationMatch:

<LocationMatch ".*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>
</LocationMatch>

关于windows - 为 Apache 中的 *nocache*-Files 禁用缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12138536/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com