Apache设置将gzip压缩的CSS / JS文件发送到浏览器

时间:2015-06-17 09:05:06

标签: apache http-headers debian gzip response-headers

我使用预先编译的gzip压缩CSS和JS文件,因此服务器不会动态执行此操作。

所以在同一文件夹中我有file.css(gzipped版本),file.nozip.css(nogzipped版本)。然后根据浏览器是否接受gzip压缩文件,发送正确的版本。

所以我在.htaccess中有以下内容:

RewriteEngine On

RewriteRule ^(.*)\.[0-9]+\.css$ $1.css [L]

#redirect Konqueror and "old browsers"
RewriteCond %{REQUEST_FILENAME} !\.nogzip\.css$
RewriteCond %{HTTP:Accept-encoding} !gzip [OR]
RewriteCond %{HTTP_USER_AGENT} Konqueror
RewriteRule ^(.*)\.css$ $1.nogzip.css [L]

<IfModule mod_headers.c>
    Header set Vary User-Agent
#set Content-Encoding for all css files
    <FilesMatch .*\.css$>
    Header set Content-Encoding: gzip
    Header set Cache-control: private
    </FilesMatch>
#drop Content-Encoding in case we send not gzipped file
    <FilesMatch .*\.nogzip\.css$>
    Header unset Content-Encoding
    </FilesMatch>
</IfModule>

<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault A36000000
</IfModule>

这种方法在Windows之前以及Linux服务器上使用过很多次。工作得很好。

然而,最近在开发另一个网站时,我遇到浏览器无法识别gzip压缩文件的问题。

在localhost工作时,这是响应头:

Accept-Ranges:bytes
Cache-control:private
Connection:Keep-Alive
Content-Encoding:gzip
Content-Length:39115
Content-Type:text/css
Date:Wed, 17 Jun 2015 11:27:28 GMT
ETag:"98cb-517998d9e690c"
Keep-Alive:timeout=5, max=100
Last-Modified:Wed, 03 Jun 2015 09:19:16 GMT
Server:Apache/2.4.12 (Win64) OpenSSL/1.0.1m PHP/5.6.9
Vary:User-Agent
X-Distributed-by:AHC

以下是从生产服务器收到的标头(不工作 - 在浏览器中显示为压缩的css文件):

Accept-Ranges:bytes
Cache-control:private
Connection:Keep-Alive
Content-Encoding:gzip
Content-Length:39099
Content-Type:text/css
Date:Wed, 17 Jun 2015 11:30:08 GMT
ETag:"98cb-517998d8fcd00-gzip"
Keep-Alive:timeout=5, max=99
Last-Modified:Wed, 03 Jun 2015 09:19:16 GMT
Server:Apache/2.4.10 (Debian)
Vary:User-Agent

唯一的区别是“X-Distributed-by:AHC”,但这几乎不是问题的原因。

还有什么想法可以检查吗?

1 个答案:

答案 0 :(得分:1)

在第2种情况下,它强烈暗示mod_deflate因etag而动态压缩它:

ETag:"98cb-517998d8fcd00-gzip"

也许最好为例如设置no-gzip konqueror案件?