RT 最近我那個第三方網頁越寫越大 載入速度也越來越慢了
因此我就想說把網頁丟給IIS壓縮 可是問題來了 我那個網頁是第三方程式的網頁
如果直接用IIS去開很多功能會跑不出來
也試過用HttpPlatformHandler寫web.config運行了 還是沒用
web.config內容如下:
<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler"
path="*"
verb="*"
modules="httpPlatformHandler"
resourceType="Unspecified" />
</handlers>
<httpPlatform
processPath="C:\Program Files (x86)\foobar2000\foobar2000.exe"
arguments=""
stdoutLogEnabled="false"
stdoutLogFile="..\logs\stdout.log"
startupTimeLimit="3600">
</httpPlatform>
</system.webServer>
</configuration>