0
我跟着這個post和this爲了測試創建項目的自定義路由條目。我試圖註冊在Global.asax中像這樣的路線......Sitecore自定義路由(不是MVC)
void RegisterRoutes(RouteCollection routes)
{
routes.RouteExistingFiles = true;
routes.MapPageRoute("about", "about/us", "~/About/Company", false);
}
,但不幸的是,這將導致404我覺得asp.net路由尋找物理頁的「關於/ Company.aspx「,因爲它更像是sitecore樹中sitecore/content/site/about/company的渲染頁面/鏈接。 你知道是否有方法將其重定向到渲染的sitecore url/item?