Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Web.config name

...

By default IIS intercept certain HTTP status codes from applications and handles them for the application. This results in IIS hiding messages returned by the application and replacing them with a generic IIS response. For optimum usage with the HTTP Framework on IIS we recommend you allow HTTP errors returned by the application to pass through IIS to the end user.

  1. Located the web.conf config in the website root directory.
  2. Open web.conf config in notepad.
  3. Locate the <system.webServer> tag.
  4. Immediately after the tag add:

    <httpErrors existingResponse="PassThrough" />

    As shown in the image blow.
  5. Save the web.config file.

...