在我的MVC 5项目中,我有一个默认的帐户控制器,我将其删除,然后将其替换为用户控制器。当我尝试打开地址为http://localhost:49669/users/create ,
的用户控制器时
它将我直接链接到http://localhost:49669/Account/Login?ReturnUrl=%2fusers%2fcreate .
我在'/'应用程序中收到服务器错误,因为我已删除帐户控制器。
我的路由有什么问题吗?
的web.config
<authentication mode="Forms">
<forms loginUrl="~/Account/Login" timeout="2880" />
</authentication>