在文档中,它说可以对 pie.htc 进行 gzip 压缩,但没有关于如何执行此操作的线索。现在我如何压缩 .htc 文件并让浏览器知道它已压缩?(我记得,对 .js 文件也可以做同样的事情。)
问问题
129 次
1 回答
1
最快的方法是压缩服务器必须输出的所有内容。
阿帕奇:
<IfModule mod_gzip.c>
# Enable the module
mod_gzip_on yes
# Allow GZIP compression for all requests
mod_gzip_item_include mime .?
</IfModule>
# Method 2: Compress all content, manually excluding specified file types
<IfModule mod_deflate.c>
# place filter 'DEFLATE' on all outgoing content
SetOutputFilter DEFLATE
# exclude uncompressible content via file type
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png|rar|zip)$ no-gzip
<IfModule mod_headers.c>
# properly handle requests coming from behind proxies
Header append Vary User-Agent
</IfModule>
</IfModule>
于 2013-03-26T12:26:04.143 回答