定義url
@html.actionlink("
html
", "
get_page
", new )
這url是呼叫本控制器下面的的get_page方法,傳參id
定義路由
routes.maproute(
name:"
urlhtml
",url:"
//.html");
註冊路由
routeconfig.registerroutes(routetable.routes);
完成以上三點還需要配置webconfig,需要在system.webserver這個節點下面加上
參考:
mvc 路由偽靜態實現
很多 都採用偽靜態,例如以html shtml等結尾的url,mvc的路由可以輕鬆實現。mvc的路由原理是從上往下匹配的,所以只需要在後面新增自己配置的路由即可 public static void registerroutes routecollection routes axd routes.m...
mvc 路由偽靜態實現
很多 都採用偽靜態,例如以html shtml等結尾的url,mvc的路由可以輕鬆實現。mvc的路由原理是從上往下匹配的,所以只需要在後面新增自己配置的路由即可 public static void registerroutes routecollection routes axd routes.m...
mvc路由配置 html結尾的偽靜態
mvc 標準的寫法 通常是 http localhost 8149 home index 路由配置如下 有時候需求 如 http localhost 8149 home index 改為http localhost 8149 index.html 讓其看起來更加像乙個靜態 配置首頁 偽靜態 路由 r...