In reference to this great tutorial which shows how to create a custom error page
http://www.asp.net/web-forms/tutorials/aspnet-45/getting-started-with-aspnet-45-web-forms/aspnet-error-handling
Got the redirect of 404 error to custom error page working fine with
http://localhost:1234/NoPage.aspx, but doesn't work with user input of
http://localhost:1234/NoPage (without the .aspx). There is no redirection to the custom error page, rather uses generic server 404 error.
Is there any way to redirect to custom error page in this case?
As per example:
<configuration>
<system.web>
Go to the complete details ...