IIS ez 2012-03-05
如果 IIS7 開啟 GZIP 功能,有可能造成 IE6 當掉,所以利用以下辦法解決! IE6 支援 gzip 及 deflate 兩種壓縮方式,但到 IE7 後僅支援 gzip,所以解決辦法是讓 IIS7 支援兩種壓縮格式。
第一步:進入 CMD 將目錄移到 C:\Windows\System32\inetsrv,輸入以下:
appcmd set config /section:httpCompression /+[name='deflate',dll='%Windir%\system32\inetsrv\gzip.dll']
第二步:修改 C:\Windows\System32\inetsrv\config\applicationHost.config 設定檔 先找尋 <httpCompression ... 找到
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
在下方新增一行
<scheme name="deflate" dll="%Windir%\system32\inetsrv\gzip.dll" />
即可完成設定!
標籤: IIS