Создать класс, который наследуется от ActionResult ...
public class PermanentRedirectResult : ActionResult
{
public string Url { get; set; }
public PermanentRedirectResult(string url)
{
this.Url = url;
}
public override void ExecuteResult(ControllerContext context)
{
context.HttpContext.Response.StatusCode = (int)HttpStatusCode.MovedPermanently;
context.HttpContext.Response.RedirectLocation = this.Url;
context.HttpContext.Response.End();
}
}
Тогда, чтобы использовать это ...
public ActionResult Action1()
{
return new PermanentRedirectResult("http://stackoverflow.com");
}
Более полный ответ, который перенаправит на маршруты ... Правильный код контроллера для 301 Redirect