How do you do a HTTP 301 permanant redirect route in ASP.NET MVC?

link|improve this question
302 is a temporary redirect ... 301 is a permanent redirect – Martin Feb 10 '10 at 2:56
I've corrected it. – splattne Sep 17 '10 at 14:47
feedback

2 Answers

Create a class that inherits from 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();
        }
    }

Then to use it...


        public ActionResult Action1()
        {          
            return new PermanentRedirectResult("http://stackoverflow.com");
        }



A more complete answer that will redirect to routes... http://stackoverflow.com/questions/1693548/correct-controller-code-for-a-301-redirect

link|improve this answer
what if i am trying to redirect old .html files that no longer exist in the? can i use routing to handle these? What is the general approach? – Rich Feb 7 '10 at 15:47
I'd probably go with some custom routes like this blog.eworldui.net/post/2008/04/… or i better yet using a http module with a separate config so you can easily phase out and in. hanselman.com/blog/ASPNETMVCAndTheNewIIS7RewriteModule.aspx – JKG Feb 7 '10 at 16:52
feedback

You want a 301 redirect, a 302 is temporary, a 301 is permanent. In this example,context is the HttpContext:

context.Response.Status = "301 Moved Permanently";
context.Response.StatusCode = 301;
context.Response.AppendHeader("Location", nawPathPathGoesHere);
link|improve this answer
3  
The first line is not needed, as StatusCode will set the appropriate label too. Status is deprecated. – Jon Hanna Aug 22 '10 at 11:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.