on an ASP Net 3.5 web app I have defaultRedirect="Views/Shared/Error.aspx". The name of my web site is "XXX".
For some reason, when an error is detected, the error page searched is "https://www.xxx.com/Views/Shared/Error.aspx" and it throws an error, because my page is behind a reverse proxy which is case sensitive. It is, the call to the error page should be "https://www.XXX.com/Views/Shared/Error.aspx"
Is there a way to specify to ASP net that the call should be case sensitive???
Thanks in advance