出于某些原因,我可以在我的服务器上使用mod_deflate或mod_gzip。所以我尝试使用PHP实现mod_deflate。
这是我的代码:
$filecontents = file_get_contents($filename);
header('Content-Encoding: gzip');
header('Content-Type: '.mime_content_type($filename));
echo gzcompress($filecontents);
但出于某种原因,我在浏览器中获得了ERR_CONTENT_DECODING_FAILED。浏览器支持gzip。 什么可能导致这个问题?