0

我在让服务器压缩文件时遇到了最糟糕的情况。我使用 ipage 作为我的主机,它正在运行 apache II。当我查看谷歌开发人员工具中的“标题”区域时,它说文件“接受编码”:gzip、deflate、sdch,但 pagespeed 洞察力仍然告诉我我的文件没有压缩。这是我的 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>
4

2 回答 2

1

检查你没有通过一个在下载过程中解压缩内容的代理吗?

我刚刚检查了您使用 cURL 提供的 URL(没有代理),并且至少在请求 HTML 时显示为 gzip'ed:

$ curl -I -H"Accept-Encoding: gzip" http://www.uniconutrition.com/info.php
HTTP/1.1 200 OK
Date: Fri, 19 Jul 2013 14:54:15 GMT
Server: Apache/2
X-Powered-By: PHP/5.2.17
Content-Encoding: gzip
Vary: Accept-Encoding
Connection: close
Content-Type: text/html

但是,CSS 和 JS 不是,例如http://www.uniconutrition.com/java/main.jshttp://www.uniconutrition.com/css/bootstrap.css

我怀疑您的网络服务器使用的是mod_deflate而不是 mod_filter。另外值得注意的是,在您的示例中,您为 JS 使用了错误的 mimetype,应该application/x-javascriptapplication/javascript.

因此,您可能应该添加一个(更简单的)指令,如下所示:

<IfModule mod_deflate.c>
   AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript
</IfModule>

编辑:

再看一遍,您的重写规则也不起作用;它指定所有流量都应该重定向到 www.uniconutrition.com,但是这并没有发生,所以它的其余部分也被忽略是理所当然的。请与您的主人确认。

于 2013-07-19T14:54:01.097 回答
1

创建一个名为 info.php 的小文件,输入“phpinfo()”并检查是否包含 ZLib。

这一点通常对我有用:

<IfModule mod_deflate.c>
    <IfModule mod_php5.c>
        php_flag zlib.output_compression 1
        php_value zlib.output_compression_level 7
    </IfModule>

    AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
    AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript
    AddOutputFilterByType DEFLATE text/xml application/xml text/x-component

    <FilesMatch "\.(ttf|otf|eot|svg)$" >
        SetOutputFilter DEFLATE
    </FilesMatch>
</IfModule>

此外,请注意我没有包含您所有的 mimetype。:) 我不确定用作分隔符/分隔符的黑斜线。

于 2013-07-19T14:35:32.803 回答