我怎么能使IIS7 gzip静态文件,如js和css,我怎么能测试如果IIS7真的gzip他们之前发送到客户端?


HttpModule中的全局Gzip

如果你不能访问最终的IIS实例(共享主机…),你可以创建一个HttpModule,将这段代码添加到每个HttpApplication中。Begin_Request事件:

HttpContext context = HttpContext.Current;
context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress);
HttpContext.Current.Response.AppendHeader("Content-encoding", "gzip");
HttpContext.Current.Response.Cache.VaryByHeaders["Accept-encoding"] = true;

测试

值得称赞的是,没有解决方案是不经过测试的。我喜欢使用Firefox插件“Liveheaders”,它显示了浏览器和服务器之间的每条http消息的所有信息,包括压缩,文件大小(你可以将其与服务器上的文件大小进行比较)。


如果你在Firebug中使用YSlow并分析你的页面性能,YSlow肯定会告诉你页面上哪些工件没有被gzip !


尝试安装了Firebug插件的Firefox。我正在使用它;web开发人员的伟大工具。

我已经启用了Gzip压缩以及在我的IIS7使用web.config。


配置

您可以在Web中完全启用GZIP压缩。配置文件。如果您在共享主机上,不能直接配置IIS,或者希望您的配置在所有目标环境之间传输,那么这一点特别有用。

<system.webServer>
  <httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
    <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
    <dynamicTypes>
      <add mimeType="text/*" enabled="true"/>
      <add mimeType="message/*" enabled="true"/>
      <add mimeType="application/javascript" enabled="true"/>
      <add mimeType="*/*" enabled="false"/>
    </dynamicTypes>
    <staticTypes>
      <add mimeType="text/*" enabled="true"/>
      <add mimeType="message/*" enabled="true"/>
      <add mimeType="application/javascript" enabled="true"/>
      <add mimeType="*/*" enabled="false"/>
    </staticTypes>
  </httpCompression>
  <urlCompression doStaticCompression="true" doDynamicCompression="true"/>
</system.webServer>

测试

要测试压缩是否有效,请使用Chrome或Firefox的Firebug中的开发人员工具,并确保设置了HTTP响应头:

Content-Encoding: gzip

注意,如果响应代码是304(未修改),则此标头将不会出现。如果是这种情况,请进行完全刷新(在按下刷新按钮时按住shift或control),然后再次检查。


如果你也在尝试gzip动态页面(如aspx),但它不起作用,这可能是因为该选项没有启用(你需要使用Windows功能安装动态内容压缩模块):

http://support.esri.com/en/knowledgebase/techarticles/detail/38616


您需要在Windows功能控制面板中启用该功能:


另一种不安装任何东西的简单测试方法,它也不依赖于IIS版本。粘贴您的url到这个链接-搜索引擎优化检查

添加到web。配置:http://www.iis.net/configreference/system.webserver/httpcompression


在Windows 2012 r2下,它可以在这里找到:


我只需要在Charlie提到的windows功能中添加功能。对于在windows10或server 2012+上无法找到它的人,请参见下面的说明。我有点纠结

Windows 10

windows server 2012 R2

windows server 2016


给那些不得不在德国/德国服务器上挣扎的可怜家伙们:)