Hello;
I have a ASP .NET MVC 1.0 application which contains few ASPX files located instead Reports folder (located on root) of application.
My Global.asax contains following lines:
routes.IgnoreRoute( "{resource}.axd/{*pathInfo}" );
routes.IgnoreRoute( "{resource}.aspx/{*pathInfo}" );
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new
{
controller = "Home",
action = "Index",
id = ""
} // Parameter defaults
);
But when I try to access following URL,
http://xx/Reports/SomeASPXPage.aspx
I get 404 (file not found error).
What I am missing in configuration?
JFYI: IIS 6 is running on Win2K3 box with wild-card mapping enabled.