I followed this post and this in order to test create a custom routing entry for an item. I tried to register a route in global.asax something like this...
void RegisterRoutes(RouteCollection routes)
{
routes.RouteExistingFiles = true;
routes.MapPageRoute("about", "about/us", "~/About/Company", false);
}
but the unfortunate thing is, this results in 404. I think the asp.net routing is looking for a physical page "About/Company.aspx" where as it is more of a rendered page/link out of sitecore/content/site/about/company in the sitecore tree. Do you know if there is way to redirect it to a rendered sitecore url/item?