在文档中它说gzipping pie.htc是可能的,但没有关于如何做到这一点的线索。现在我怎么能gzip .htc文件并让浏览器知道它被压缩了?(我记得,对.js文件做同样的事情。)
答案 0 :(得分: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>