Rumah  >  Artikel  >  pembangunan bahagian belakang  >  开启wamp中的gizp压缩的有关问题

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

WBOY
WBOYasal
2016-06-13 12:09:001070semak imbas

开启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 

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:php怎么导出Excel?Artikel seterusnya:PHP系统公报-发送通知给每个人