0
我有網站,我有一個名爲test.html頁面的頁面。當我瀏覽http://www.domainName.com/test時,它會選擇test.html頁面而不使用控制器和操作方法。如何在mvc中路由,如何在mvc中隱藏頁面擴展名?
什麼我routeconfig.cs寫
routes.MapRoute(
name: "",
url: "",
defaults: new
{
});
if **「Path/To/Your/test.html」**是html文件路徑,那麼**「Yourhtmlroute」**是什麼? –
http://localhost/smartpond/MyPage.html(working),但http:// localhost/smartpond/MyPage不工作 routes.MapPageRoute(「MyPage.html」,「MyPage」,「〜/ MyPage.html」 ); – Swapna
錯誤 - VirtualPath必須是以〜/開頭的非空字符串。 參數名稱:virtualPath – Swapna