, /content/something, IIS. , , , 404 URL-. , 404 .
, RouteExistingFiles . , . RouteExistingFiles = true, , . , , , , , ? .
, MapPageRoute . , Microsoft : http://msdn.microsoft.com/en-us/library/dd329551.aspx
routes.MapPageRoute("SalesRoute",
"SalesReport/{locale}/{year}",
"~/sales.aspx");
This will cause the corresponding routes to call sales.aspxin response. In your example, the target ~/about/company, which looks like a route, and not the actual target — your actual target, which processes the CMS request, should have an extension aspx.
source
share