通过PHP将gzip压缩到html网站

时间:2012-05-17 15:26:37

标签: gzip

我的网站是html,我想启用gzip压缩,我的服务器通过PHAR扩展提供了gzip压缩。

你可以指导我如何做gzip。

1 个答案:

答案 0 :(得分:2)

我更喜欢在.htaccess中启用GZIP,假设您的主机允许您更改/添加.htaccess文件。如果他们这样做,我会写一下how to enable GZIP

#Gzip
<ifmodule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
</ifmodule>
#End Gzip