
时间:2015-06-28 00:00 来源:IT猫扑网|http://www.itmop.com/ 作者:网管联盟 我要评论(0)
首先查看apache是否加载了mod_deflate.so模块,如果没有需要安装加载。找到并下载和当前apache版本相同的源码文件,解压缩到/home目录下,在apache安装目录下执行:
| /usr/local/apache2/bin/apxs -i -c /home/httpd-2.0.63/modules/filters/mod_deflate. |
会自动在 httpd.conf添加
| LoadModule deflate_module modules/mod_deflate.so |
添加如下设置:
| <IfModule mod_deflate.c> <Location /> #Insert filter SetOutputFilter DEFLATE # Netscape 4.x has some problems… BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine # BrowserMatch bMSIE !no-gzip !gzip-only-text/html # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.59 # the above regex won’t work. You can use the following # workaround to get the desired effect: # BrowserMatch bMSIE !no-gzip !gzip-only-text/html force-gzip BrowserMatch bMSIE !no-gzip !gzip-only-text/html # Don’t compress images and other SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary SetEnvIfNoCase Request_URI .(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary SetEnvIfNoCase Request_URI .(?:pdf|doc)$ no-gzip dont-vary AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css AddOutputFilterByType DEFLATE application/x-javascript # Make sure proxies don’t deliver the wrong content Header append Vary User-Agent env=!dont-vary #DeflateFilterNote ratio ratio_info #LogFormat '&%v %h %l %u %t &%r& %>s %b &%{Referer}i& &%{User-Agent}i&& (%{ratio}n)' deflate #CustomLog logs/deflate_log deflate </Location> |
停止apache服务./apachectl stop,报错如下:
| Cannot load /usr/local/apache2/modules/mod_deflate.so into server: /usr/local/apache2/modules/mod_deflate.so: undefined symbol: deflate |
解决如下:
| vi /usr/local/apache2/bin/apr-config 修改LDFLAGS=& & 为 LDFLAGS=&-lz& |
停止启动服务:仍提示:
| DeflateFilterNote not allowed here CustomLog not allowed here |
注释掉后,正常。
关键词标签:apache性能优化,gzip压
相关阅读 ISAPI Rewrite实现IIS图片防盗链 IIS6.0下配置MySQL+PHP5+Zend+phpMyAdmin 在Windows服务器上快速架设视频编解码器全攻略 win2000server IIS和tomcat5多站点配置 Windows Server 2003的Web接口 关于Zend Optimizer
热门文章
ISAPI Rewrite实现IIS图片防盗链
IIS6.0下配置MySQL+PHP5+Zend+phpMyAdmin
在Windows服务器上快速架设视频编解码器全攻略
win2000server IIS和tomcat5多站点配置
Windows Server 2003的Web接口
CentOS 6.3安装配置LAMP服务器(Linux+Apache+MySQL+PHP5)
人气排行 XAMPP配置出现403错误“Access forbidden!”的解决办法 WIN2003 IIS6.0+PHP+ASP+MYSQL优化配置 访问网站403错误 Forbidden解决方法 如何从最大用户并发数推算出系统最大用户数 Server Application Unavailable的解决办法 报错“HTTP/1.1 400 Bad Request”的处理方法 Windows Server 2003的Web接口 http 500内部服务器错误的解决办法(windows xp + IIS5.0) IIS出现RPC服务器不可用的解决方法 502 bad gateway是什么意思?502 bad gateway错误怎么解决! 教你如何搭建自己的CS游戏服务器 Discuz Windows 环境搭建推荐教程
查看所有0条评论>>