Apache ExpiresDefault A0不起作用

时间:2017-07-10 02:50:52

标签: apache2.4

我正在设置apache标头,不想缓存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.

如何解决此错误?

1 个答案:

答案 0 :(得分:3)

您需要启用mod_expiries。

取消注释httpd.conf中的以下行:

LoadModule expires_module modules/mod_expires.so

或者如果在基于Debian的系统上,则使用以下命令启用它:

a2enmod expires