I've learned here at stack that I could have been doing my custom error pages in production more easily. I was doing this in system.web:
<customErrors mode="On" redirectMode="ResponseRedirect"
defaultRedirect="~/errors/unexpected">
<error statusCode="400" redirect="~/errors/400" />
<error statusCode="403" redirect="~/errors/403" />
<error statusCode="404" redirect="~/errors/404" />
</customErrors>
... and this in system.webServer:
<httpErrors errorMode="Custom" defaultResponseMode="ExecuteURL">
<remove statusCode="400" subStatusCode="-1" />
<error statusCode="400" prefixLanguageFilePath="" path="/errors/400"
responseMode="ExecuteURL" />
<remove statusCode="404" subStatusCode="13" />
<error statusCode="404" subStatusCode="13" prefixLanguageFilePath=""
path="/errors/file-upload-too-large" responseMode="Redirect" />
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/errors/404"
responseMode="ExecuteURL" />
<remove statusCode="403" subStatusCode="-1" />
<error statusCode="403" prefixLanguageFilePath="" path="/errors/403"
responseMode="ExecuteURL" />
</httpErrors>
... but many of the popular answers said I should just leave my system.web/customErrors and change my system.webServer/httpErrors to this:
<httpErrors erroMode="Detailed"></httpErrors>
But what if I have a custom page for a sub status code, as noted above? Redirecting to a different page for a 404 code with sub status 13 when a file upload exceeds the file size limit?
Should I continue to use custom errors for IIS? Or is there a way to specify sub status code in the system.web/customErrors?
<error statusCode="404.13" redirect="~/errors/file-upload-too-large" />does that work? – michielvoo Jan 22 at 20:37