我有最糟糕的時間讓我的服務器來壓縮我的文件。我使用ipage作爲我的主機,它運行着Apache II。當我查看谷歌開發人員工具中的「標題」區域時,它表示文件'accept-encoding':gzip,deflate,sdch',但pagespeed的見解仍然告訴我我的文件沒有被壓縮。這裏是我的htaccess文件代碼:GZIP壓縮不工作-htaccess文件可能是錯誤的?
這可能幫助過:http://www.uniconutrition.com/info.php
請幫幫忙!
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^uniconutrition.com [nc]
rewriterule ^(.*)$ http://www.uniconutrition.com/$1 [r=301,nc]
<IfModule mod_deflate.c>
<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>
http://www.uniconutrition.com/info.php我看到一個zlib部分..它說啓用...生病請嘗試您的代碼:) –
嗯它不工作:( –
它工作@lancesmith?什麼結果是你越來越? – ReSpawN