您始终可以使用全部语法(我不知道名称是否正确)。
路线:
routeTable.MapRoute(
"Path",
"{*path}",
new { controller = "Pages", action = "Path" });
控制器动作定义为:
public ActionResult Path(string path)
在控制器的操作中,您将有一条路径,因此只需将其溢出并进行分析。
要调用另一个控制器,您可以使用 RedirectToAction (我认为这是更合适的方法)。使用重定向,您可以为其设置永久重定向。或使用类似的东西:
internal class MVCTransferResult : RedirectResult
{
public MVCTransferResult(string url) : base(url)
{
}
public MVCTransferResult(object routeValues)
: base(GetRouteURL(routeValues))
{
}
private static string GetRouteURL(object routeValues)
{
UrlHelper url = new UrlHelper(
new RequestContext(
new HttpContextWrapper(HttpContext.Current),
new RouteData()),
RouteTable.Routes);
return url.RouteUrl(routeValues);
}
public override void ExecuteResult(ControllerContext context)
{
var httpContext = HttpContext.Current;
// ASP.NET MVC 3.0
if (context.Controller.TempData != null &&
context.Controller.TempData.Count() > 0)
{
throw new ApplicationException(
"TempData won't work with Server.TransferRequest!");
}
// change to false to pass query string parameters
// if you have already processed them
httpContext.Server.TransferRequest(Url, true);
// ASP.NET MVC 2.0
//httpContext.RewritePath(Url, false);
//IHttpHandler httpHandler = new MvcHttpHandler();
//httpHandler.ProcessRequest(HttpContext.Current);
}
}
但是,此方法需要在 IIS 上运行,或者 IIS Express Casinni 不支持 Server.Transfer 方法