IIS 7.0 404 Custom Error Page and web.config
- by Colin
I am having trouble with a custom 404 error page.
I have a domain running a .NET proj with it's own error handling. I have a web.config running for the domain which contains:
<customErrors mode="RemoteOnly">
<error statusCode="500" redirect="/Error"/>
<error statusCode="404" redirect="/404"/>
</customErrors>
On a…