5

我已将我网站上的所有脚本添加到非常大的包中(大约 700kb)。现在我想让 IIS 压缩它,但我不能。

我已经尝试了在这里和网络上找到的所有东西,但没有任何帮助。静态 *.js 文件会被 gzip 压缩,但不会完整捆绑。

有什么解决办法吗?

4

1 回答 1

5

检查动态压缩。必须为 IIS 和您的网站启用它。您还必须在 applicationHost.config 中有一个有效的配置。

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

重要提示:捆绑响应的内容类型是text/javascript,因此请检查您的配置是否为该类型。

于 2013-02-12T15:33:43.523 回答