有人可以给我一个htaccess的样本gzip代码吗?

时间:2010-06-10 08:07:11

标签: php apache .htaccess gzip

我很想开始尝试使用gzip,但就像我第一次开始学习php时常常找到php.net一样,apache文档让我感到困惑。 http://httpd.apache.org/docs/2.0/mod/mod_deflate.html

我真的很感激htaccess文件的样本,看看是否有人有这个文件?

如果我在服务器范围内启用gzipping,那么还应该在httpd.conffile而不是htaccess中更改这些内容吗?

抱歉,我是apache的新手!


编辑:

所以我在httpd.conf中启用mod_deflate,然后将以下内容放入ht访问文件中(作为示例)?

<Location />
# Insert filter
SetOutputFilter DEFLATE

# 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

# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !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
</Location>

1 个答案:

答案 0 :(得分:0)

您可以在Apache中使用mod_deflate或使用PHP启用gzip。必须在Apache的主配置文件中激活模块本身,尽管您可以使用.htaccess文件决定在每个目录基础上压缩哪些文件(除非主要配置禁止AllowOverride None或类似)。您提供的链接提供了示例。

您也可以通过将zlib.output_compression = On添加到php.ini文件中来启用它。