2

私のホスティング サーバーは、共有ホスティング環境のゴッドダディです。共有ホスティング環境のため、IIS 設定にアクセスできません。

多くの目的で、json 応答を ajax 要求に送信します

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 ページを gzip することはできますが、json 応答を圧縮していません。JSON応答を圧縮するにはどうすればよいですか..??

4

1 に答える 1

0

答えは、独自の VPS サーバー (予算が限られている場合) または独自の専用サーバーが必要だということだと思います。次に、IIS7 の applicationHost.config を変更できます。

于 2014-12-30T06:24:35.610 に答える