我在 Windows 上运行 Apache httpd。我想让 Apache 使 index.html 不可缓存 - 但只有主页 index.html,没有其他 index.html 文件。这是我到目前为止所拥有的:
<Directory "D:\path\to\root">
<FilesMatch "index.html$">
Header set Cache-Control "max-age=0, must-revalidate"
</FilesMatch>
</Directory>
它有效 - 但适用于所有index.html 文件。如何将其缩小到只有一个 index.html?显然我可以在目录中使用正则表达式,但我这不起作用:
<Directory ~ "D:\\path\\to\\root">