我需要设置一个自定义路由值,这样你就不得不去
站点/管理员/elmah.axd
在我的 web.config 中,我有:
<location path="elmah.axd">
<system.web>
<authorization>
<allow roles="Admin" />
<deny users="*" />
</authorization>
</system.web>
</location>
加上所有其他相关的 elmah 设置。如果我删除该部分,我可以输入:
网站/elmah.axd
但我只希望管理员能够访问此页面。
我有一个您登录的管理页面,如果您是管理员角色,那么您应该被重定向到 elmah.axd
public AdminController(IRepository<User> userRepository)
{
_userRepository = userRepository;
}
//
// GET: /Admin/
public ActionResult Index()
{
return View(Constants.Admin);
}
public ActionResult AdminLogin(string SSN)
{
var user = _userRepository.FindBy(x => x.UserName == SSN).SingleOrDefault();
if (UserIsAnAdmin(user))
{
return RedirectToRoute("/elmah.axd");
}
return View(Constants.DeniedAccess);
}
我的 Global.asax 文件中有一个需要帮助的路由值。
routes.MapRoute(
"mocklogin",
"{controller}/{action}", // URL with parameters
new { controller = "MockLogin", action = "Index" } // Parameter defaults
);
routes.MapRoute(
"elmah.axd",
"{controller}/{action}", // URL with parameters
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}", // URL with parameters
//need something here redirecting to the elmah.axd page
);
有没有办法将页面重定向到我网站上的 /elmah.axd 页面。
最后,我想转到我网站的管理员页面,如果用户是管理员,当我单击提交时,我想重定向到 elmah.axd 页面。否则我会转到我的自定义错误页面。我需要以某种方式让控制器上的 ssn 调用条件,如果为真,则重定向到 elmah.axd。如何在 MVC 中重定向到 elmah.axd?