IIS7.X删除目录,使用gzip压缩

时间:2012-04-20 17:31:12

标签: asp.net asp.net-mvc-3 gzip iis-7.5 http-compression

我正在尝试从gziped中删除一个目录,因为它会导致浏览器出错。

这是我的代码。我读过我不能只禁用一个页面,但是有一种方法可以禁用目录路径。我无法访问服务器设置,但也许我可以通过删除或添加staticTypes的路径从web.config建立吗?

<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
      <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" staticCompressionLevel="9" />
      <dynamicTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/x-javascript" enabled="true" />
        <add mimeType="application/json" enabled="true" />
        <add mimeType="*/*" enabled="false" />
      </dynamicTypes>
      <staticTypes>
        <add mimeType="text/*" enabled="true" />
        <add mimeType="message/*" enabled="true" />
        <add mimeType="application/x-javascript" enabled="true" />
        <add mimeType="application/atom+xml" enabled="true" />
        <add mimeType="application/xaml+xml" enabled="true" />
        <add mimeType="*/*" enabled="false" />
      </staticTypes>
    </httpCompression>

请咨询

0 个答案:

没有答案