0
我剛剛上傳到網站的虛擬主機(它使用的cPanel),我使用樣板 .htaccess文件(不變) - 這樣的mod_deflate模塊應該是工作,但它不是(我在http://www.whatsmyip.org/http-compression-test/(地址是okcpirot.rs))檢查了這個。 我對這件事很陌生 - 有什麼我需要打開在CPanel爲了這個工作或它應該自動工作?樣板的.htaccess mod_deflate模塊不能正常工作
代碼mod_deflate模塊
<IfModule mod_deflate.c>
# Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
</IfModule>
</IfModule>
# Compress all output labeled with one of the following MIME-types
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE application/atom+xml \
application/javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>
</IfModule>