作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在设置 apache header 并且不想缓存 PHP、CGI、Python 或任何动态文件。
我使用的服务器:Debian 9
我添加了这个配置:
# No caching for dynamic files
<filesMatch "\.(php|cgi|pl|htm)$">
ExpiresDefault A0
Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0"
Header set Pragma "no-cache"
</filesMatch>
但显示以下错误:
AH00526: Syntax error on line 86 of /etc/apache2/conf-enabled/headers.conf: Invalid command 'ExpiresDefault', perhaps misspelled or defined by a module not included in the server configuration Action '-t' failed.
如何解决这个错误?
最佳答案
您需要启用 mod_expiries。
取消注释 httpd.conf 中的以下行:
LoadModule expires_module modules/mod_expires.so
或者,如果是基于 Debian 的系统,则使用以下命令启用它:
a2enmod expires
关于apache2.4 - Apache ExpiresDefault A0 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45003118/
我是一名优秀的程序员,十分优秀!