如何在ASP.Net MVC中执行301永久重定向路由

前端之家收集整理的这篇文章主要介绍了如何在ASP.Net MVC中执行301永久重定向路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在ASP.NET MVC中执行HTTP 301永久重定向路由?

解决方法

创建一个继承自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("https://stackoverflow.com");
        }

一个更完整的答案将重定向到路线… Correct Controller code for a 301 Redirect

原文链接:/aspnet/248618.html

猜你在找的asp.Net相关文章