Not sure i'm following you here.
My routes are defined like this
routes.MapRoute("Basic",
"{controller}.mvc/{action}/{id}",
new { controller = "Home", action = "Index", id = "" },
new { controller = @"[^\.]*" }
);
routes.MapRoute("Default",
"Default.aspx",
new { controller = "Home", action = "Index", id = "" }
);
In IIS 5 i have a virtual directory pointing to my web app with the name GTS
Whenever i try to browse from localhost i get
The resource cannot be found.
Description:
HTTP 404. The resource you are looking for (or one of its dependencies)
could have been removed, had its name changed, or is temporarily unavailable.
Please review the following URL and make sure that it is spelled correctly.
Requested URL: /gts/Home.mvc
If i try from vs everything is fine?