在HTTP请求上发送预压缩文件

时间:2012-01-17 19:19:55

标签: gzip apache static-files

我刚刚了解了现代浏览器和网络服务器的gzip压缩功能。 如果我理解正确,服务器会根据浏览器的请求和动态进行压缩。

但: 我在网络服务器上有一些静态的,gzip'ed json文件。我想简单地发送它们,而不是每次请求时都压缩它们。 这可能吗?

提前致谢,

1 个答案:

答案 0 :(得分:0)

这是.htaccess,对我有用:

RewriteEngine On

RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -s
RewriteRule ^(.+) $1.gz [L]

AddEncoding x-gzip .gz

<FilesMatch .*\.htm.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.html.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.css.gz>
    ForceType text/css
</FilesMatch>

<FilesMatch .*\.js.gz>
    ForceType text/javascript
</FilesMatch>