我发现我的服务器没有提供压缩页面。
使用这个答案,我在我的 httpd conf 文件中添加了以下内容:
# Declare a "gzip" filter, it should run after all internal filters like PHP or SSI
FilterDeclare gzip CONTENT_SET
# "gzip" filter can change "Content-Length", can not be used with range requests
FilterProtocol gzip change=yes;byteranges=no
# Enable "gzip" filter if "Content-Type" contains "text/html", "text/css" etc.
FilterProvider gzip DEFLATE resp=Content-Type $text/html
FilterProvider gzip DEFLATE resp=Content-Type $text/css
FilterProvider gzip DEFLATE resp=Content-Type $text/javascript
FilterProvider gzip DEFLATE resp=Content-Type $application/javascript
FilterProvider gzip DEFLATE resp=Content-Type $application/x-javascript
# Add "gzip" filter to the chain of filters
FilterChain gzip
接下来,我发出
apachectl configtest
这产生了这个错误:
无效的命令“FilterDeclare”,可能拼写错误或由未包含在服务器配置中的模块定义
这是来自的输出httpd -l
Compiled in modules:
core.c
prefork.c
http_core.c
mod_so.c
我需要安装哪些模块才能使页面压缩正常工作?我正在运行 CentOS 6.6。
在 Centos
mod_filter
中默认不加载,您需要在httpd.conf
以下行中添加或取消注释:不要忘记重新加载您的更改