答案 0 :(得分:5)
您可以使用参数将example.com/Ana
路由到Home / Index(您可以将控制器和操作更改为所需的内容)。只需在路由字典中添加新路由
routes.MapRoute(
"UserPage",
"{controller}/{action}/{user}",
new { controller = "Home", action = "Index", user = "" }
);
您可以阅读有关路由here at ASP.NET
的更多信息注意: 正如Alexei Levenkov所说,它需要.Net MVC以这种方式进行路由。