php在apache环境下实现gzip配置方法
本文实例讲述了php在apache环境下实现gzip配置方法。分享给大家供大家参考。具体如下:
1、conf/httpd.conf
1)去掉#LoadModuleheaders_modulemodules/mod_headers.so前面的注释#,
2)添加LoadModuledeflate_modulemodules/mod_deflate.so,
3)去掉#Includeconf/extra/httpd-vhosts.conf前面的注释#。
2、conf/extra/httpd-vhosts.conf
在VirtualHost中添加
<Location"/"> SetOutputFilterDEFLATE BrowserMatch^Mozilla/4gzip-only-text/html BrowserMatch^Mozilla/4\.0[678]no-gzip BrowserMatch\bMSIE!no-gzip!gzip-only-text/html SetEnvIfNoCaseRequest_URI\.(?:gif|jpe?g|png)$no-gzipdont-vary HeaderappendVaryUser-Agentenv=!dont-vary </Location>
例如:
<VirtualHost*:80> DocumentRoot"D:/Apache2.2/htdocs/wef" <Location"/"> SetOutputFilterDEFLATE BrowserMatch^Mozilla/4gzip-only-text/html BrowserMatch^Mozilla/4\.0[678]no-gzip BrowserMatch\bMSIE!no-gzip!gzip-only-text/html SetEnvIfNoCaseRequest_URI\.(?:gif|jpe?g|png)$no-gzipdont-vary HeaderappendVaryUser-Agentenv=!dont-vary </Location> </VirtualHost>
希望本文所述对大家的php程序设计有所帮助。