In a ASP.Net 4 and MVC2 application we have an odd configuration error.
The web.config looks something like this:
<configuration>
<location path="blockedpath">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<system.web>
<customErrors mode="On" defaultRedirect="~/Error.aspx" />
</system.web>
</configuration>
Visiting the blocked location is correctly denied, but gives a verbose error message from IIS that we don't want.
Why doesn't it serve up the configured custom error?
Can we control what page it does serve up when page access is denied by config?