0

ドキュメントでは、pie.htcをgzipすることは可能であると述べていますが、それを行う方法についての手がかりはありません。では、どうすれば.htcファイルをgzipで圧縮して、ブラウザに圧縮されていることを知らせることができますか?(覚えているように、.jsファイルでも同じことが可能でした)。

4

1 に答える 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 に答える