存档

文章标签 ‘apache gzip’

Apache启用gzip压缩

2010年11月21日 没有评论

试了一下,感觉并不明显,方法还是贴出来,大家可以参考。

在.htaccess文件中添加如下规则:

# BEGIN 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