我在我的網站web.config中使用httpErrors
來處理404錯誤。直到我將existingResponse="Replace"
添加到節點,但現在我沒有在我的本地開發機器上獲得任何死亡錯誤的黃色屏幕,這不能正常工作。httpErrors在本地機器上顯示500錯誤代替YSOD
<httpErrors errorMode="Custom" existingResponse="Replace" >
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/error.aspx?c=404" responseMode="ExecuteURL" />
</httpErrors>
任何人都想試試這個,並告訴我他們是否在出現異常時得到同樣的問題? – skyfoot