我想保留我网站的根基,以便用于标准网络格式,并将MVC网页放在一个次主题意见中,因此我有以下内容。
routes.MapRoute(
"Default", // Route name
"Views/{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
然而,尽管这项工作和我看到几个工作方,但我并不高兴的是,RedirectToAction似乎把我引向错误的网页,例如:
return RedirectToAction("Index", "Home");
下面请上<代码>:http:// localhost/Views,其中给我一个没有找到的资源,家庭主计长的指数行动没有大火。 是否有更好的办法执行我在这里想要的东西,还是我没有明显的东西?