2

我的托管服务器在共享托管环境中是godaddy。由于共享托管环境,我无权访问 IIS 设置。

出于多种目的,我向 ajax 请求发送 json 响应

我在 web.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/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/javascript" enabled="true"/>
        <add mimeType="application/json" enabled="true"/>
                <add mimeType="*/*" enabled="false"/>
            </staticTypes>
        </httpCompression>

我可以将我的 .aspx 页面压缩,但它不会压缩 json 响应。如何压缩 json 响应..??

4

1 回答 1

0

我认为答案是您需要自己的 VPS 服务器(如果您有预算的话)或您自己的专用服务器。然后你可以修改 IIS7 的 applicationHost.config

于 2014-12-30T06:24:35.610 回答