我设置了GZIP压缩,它适用于css / js文件,但不适用于html页面。
请帮我解决问题。
服务器已启用压缩,以下是与压缩相关的info.php统计信息:
_SERVER["HTTP_ACCEPT_ENCODING"] gzip, deflate Stream Wrapper compress.zlib:// Stream Filter zlib.inflate, zlib.deflate Compiled Version 1.2.3 Linked Version 1.2.3
以下是.htacess部分:
# Insert filter on all content SetOutputFilter DEFLATE # Insert filter on selected content types only AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript # 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
正在压缩css和js。最初在google page insights上测试所有css,js和页面本身都显示为未压缩,现在只显示页面本身。 这里还有来自firefox Web开发人员工具的screenshot。
有什么问题? 如果它有所不同,我正在使用magento ver 1.9。
答案 0 :(得分:0)
对于任何有相同问题的人,问题是托管服务提供商未启用“ zlib.output_compression ”
启用后,问题就解决了。