How do you do a HTTP 301 permanant redirect route in ASP.NET MVC?
feedback
|
|
Create a class that inherits from ActionResult...
Then to use it...
A more complete answer that will redirect to routes... http://stackoverflow.com/questions/1693548/correct-controller-code-for-a-301-redirect | |||||
feedback
|
|
You want a 301 redirect, a 302 is temporary, a 301 is permanent. In this example,
| |||||
feedback
|