我正在使用mvc 5创建用户帐户,我希望用户拥有类似example.com/username
的配置文件路径
有可能做到这一点,如果是的话?
谢谢
答案 0 :(得分:1)
您需要在global.asax中创建路由条目:
RouteTable.Routes.Add(new Route
{
Url = [username],
Defaults = new { Controller = "YourController", Action = "YourAction" }
});
然后您的控制器应如下所示:
class YourControllerController : Controller
{
public ActionResult YourAction(string username)
{
...
}
}