Apache 动态解压缩的难题

Apache 动态解压缩的难题

(先说明一下,我在Apache中的所有html文件,已经全部Gzip过了。)

我想让Apache判断游览器是否返回 Accept-Encoding, 如果返回,我就直接返回html文件。
如果不返回,我就想用一段程序来解压后,然后返回。

我现在的做法是用一个PHP来做中间层,但由于效率不太好,经常负载过高。
有没有办法直接让Apache来做呢?如果其他的Web Server也可以
http://w.yi.org/ftp/FAPM/apache/Apache2/zh/mod/mod_deflate.html
Compress everything except images
<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

# Don't compress images
SetEnvIfNoCase Request_URI \

\.(?:gif|jpe?g|png)$ no-gzip dont-vary


# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary

</Location>
兄台没有明白我的意思,为了降低负载,我在生成HTML文件的时候已经进行过gzip了。

我现在组要是想让Apache 来判断 客户端 是否返回 Accept-Encoding,如果返回,说明这个客户端时接受gzip的,那就直接返回文件。
如果不返回 Accept-Encoding,那我想让Apache Gunzip (解压缩) 后返回
已经事先压缩了的话,Apache本身没有解压缩的模块。
http://w.yi.org/ftp/FAPM/apache/Apache2/zh/filter.html

如果可能的话,可以接合rewrite来对需要解压缩的文件进行解压缩。