httpErrors shows 500 error instead of YSOD on local machine

1.3k views Asked by At

I am using httpErrors in my sites web.config to handle 404 errors. This was not working correctly until I added existingResponse="Replace" to the node but now I dont get any yellow screen of death errors on my local development machine.

<httpErrors errorMode="Custom" existingResponse="Replace" >
      <remove statusCode="404" subStatusCode="-1" />
      <error statusCode="404" prefixLanguageFilePath="" path="/error.aspx?c=404" responseMode="ExecuteURL" />
 </httpErrors>
2

There are 2 answers

1
Jim Geurts On BEST ANSWER

Try changing the existingResponse value to Auto. That worked for me. I'm now able to use a custom 404 page, while also seeing the yellow screen of death errors.

0
Karanvir Kang On

You should set the errorMode attribute to DetailedLocalOnly. This will allow you to see YSOD on local environment and httpErrors when accessing your website from remote machine