Home  >  Article  >  Backend Development  >  开启wamp中的gizp压缩的有关问题

开启wamp中的gizp压缩的有关问题

WBOY
WBOYOriginal
2016-06-13 12:09:001068browse

开启wamp中的gizp压缩的问题
1、首先LoadModule deflate_module modules/mod_deflate.so
              LoadModule headers_module modules/mod_headers.so
这两句前的#号我是去掉了的
2、
SetOutputFilter DEFLATE
# 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 

这样Apache也能正常启动 
但是一旦成这样

SetOutputFilter DEFLATE
# 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 
 
Apache就启动不了  一直是黄色的  求大神解答
------解决思路----------------------
这句表示所有都进行gzip
SetOutputFilter DEFLATE 

这三句表示排除以下类型不gzip
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 

这句表示text/html text/plain text/xml text/css进行gzip
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css 

请不要这样混写。
要么用SetOutputFilter DEFLATE 加排除的写法
要么直接用AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn