是(function_exists(‘ob_gzhandler’)&& ini_get(‘zlib.output_compression’))足够吗?
我想检查主机是否在其中一个页面中提供压缩页面:)
解决方法:
对于PHP,他们会做得很好.
但是,如果您将页面压缩回客户端,则还需要检查它是否已在apache中启用(假设您使用的是apache,则需要mod_gzip.c或mod_deflate.c模块).
例如:
#httpd -l(apache 2)
我也看到过去需要实现.htaccess覆盖:
#compress all text & html:
AddOutputFilterByType DEFLATE text/html text/plain text/xml
# Or, compress certain file types by extension:
<Files *.html>
SetOutputFilter DEFLATE
</Files>