压缩不适用于MVC和IIS的静态文件

时间:2016-10-07 15:04:59

标签: asp.net-mvc iis compression

我正在尝试在IIS 7.5上托管的ASP.NET MVC 5应用程序上启用压缩,但我无法使其正常工作。

我在网站上启用了静态和动态压缩。

我尝试将以下内容添加到我的web.config文件中:

<staticContent>
    <remove fileExtension=".js" />
    <mimeMap fileExtension=".js" mimeType="text/javascript" />
</staticContent>

<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="text/javascript" enabled="true" />
    <add mimeType="*/*" enabled="false" />
    </staticTypes>
</httpCompression>

<urlCompression doStaticCompression="true" doDynamicCompression="true" />

0 个答案:

没有答案