在global文件中添加如下的代碼html
<%@ Import Namespace="System.Web.Routing" %> <script RunAt="server"> void Application_Start(object sender, EventArgs e) { //在應用程序啓動時運行的代碼 //在Application_Start時註冊的Routing規則 RegisterRoutes(RouteTable.Routes); } public static void RegisterRoutes(RouteCollection routes) { routes.Ignore("{resource}.axd/{*pathInfo}"); routes.MapPageRoute("all", //給這個UrlRouting規則起一個名字 "{file}/{page}", //但願的友好Url地址格式 "~/{file}/{page}.aspx", //映射到的aspx頁面路徑 false, //是否須要檢查用戶權限 new RouteValueDictionary { { "page", "default" } }); }