2012-05-06 13 views
0

文書では、pie.htcをgzipすることは可能だが、それを行う方法の手がかりはないという。今、.htcファイルをgzipして、ブラウザに圧縮されていることを知らせることができますか?(覚えていますが、.jsファイルでも同じことができました)css3-pieを圧縮する

答えて

1

最速のアプローチは、 。

のapache:

<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>