1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
public static void RegisterRoutes(RouteCollection routes)
{ routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); string extension = ConfigurationManager.AppSettings["ExtensionName"] ?? string.Empty; extension = string.IsNullOrWhiteSpace(extension) ? string.Empty : "." + extension; string[] _namespace = new string[] { "MvcBlog_Example.Controllers" }; routes.MapRoute("AllBlogs", //实现http://localhost:5680/User1 (不带/home.jsp) //示范访问地址http://localhost:5680/User1/home.jsp /* 你会发现当你输入/aa/home.jsp时~MVC会返回404错误页 |
MVC3路由设置访问后缀 html jsp
C# Code