0
我有一個名爲內容的控制器,它具有與視圖關聯的索引操作。看不到我的控制器的索引視圖 - 路由相關
我想簡單的路線「內容」向我展示內容控制器的索引視圖,所以我用下面的代碼(加入了默認的網站首頁路線):
routes.MapRoute(
"ContentIndex",
"content",
new { controller = "Content", action = "Index"}
);
routes.MapRoute(
"Default",
"{controller}/{action}",
new { controller = "Home", action = "Index" }
);
時我輸入url:「http://localhost/content/」,我得到一個錯誤404,表示找不到資源,但是當我輸入「http://localhost/content/index」時,它顯示內容索引視圖。我如何擺脫url中的索引?
謝謝!
哇!我可以選擇所有愚蠢的名字......謝謝,你解決了我的問題...... – vobs 2010-03-12 17:01:52