用mod_deflate module开启icdsoft空间的网页gzip压缩
现在网上介绍的icdsoft空间开启gzip压缩的方法基本是不可用的,根据查阅官方帮助文档,加上亲测,现共享开启gzip压缩方法。
先解释为什么网上流行的一长串代码方法无效,官方解释是:icdsoft使用的是Apache 2,而mod_gzip是适用于Apache 1.3;在Apache 2环境下,mod_gzip包含在mod_deflate module中。原文:Mod_gzip is a module for the Apache 1.3 Web Server. As we do not use Apache 1.3 on our servers, it is not available with our service. We are using Apache 2. In Apache 2, the functionality of mod_gzip is covered by the mod_deflate module.
开启mod_deflate的方法:在根目录下的.htaccess(没有就创建一个)添加如下代码即可:
<IfModule deflate_module>
AddOutputFilterByType DEFLATE text/css text/csv text/html text/plain text/richtext text/sgml text/tab-separated-values application/javascript application/x-javascript httpd/unix-directory
AddOutputFilter DEFLATE html htm shtml php php4 pl rb py cgi css js txt
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
开启后的压缩率可达80%以上。
懒人福利包:htaccess.rar