在C#中,可以使用ASP.NET MVC框架中的路由来实现URL重定向。下面是一个简单示例:
using System.Web.Mvc;
using System.Web.Routing;
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Redirect",
url: "old-url",
defaults: new { controller = "Home", action = "RedirectToNewUrl" }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
public class HomeController : Controller
{
public ActionResult RedirectToNewUrl()
{
return RedirectPermanent("/new-url");
}
}
在上面的示例中,首先在RouteConfig类中定义了两个路由规则,其中一个用于重定向旧URL到新URL。在HomeController中的RedirectToNewUrl方法中,通过调用RedirectPermanent方法来执行重定向操作。
注意:在ASP.NET Core中,使用Startup类中的UseEndpoints方法来配置路由规则,实现方式略有不同,但原理类似。