:status => 301 and : moved_permanently redirects in Rails

February 11, 2008

 
No Gravatar

I made a recent post on 301 redirects in Rails, new to 2.0 we have a few more methods available to us.

1
# prior method<br>headers["Status"] = "301 Moved Permanently"<br>redirect_to "/"<br><br># condo has been defined as a resource in my route.rb<br>redirect_to condo_url(@condo), :status =&gt; 301<br>redirect_to condo_url(@condo), :status=&gt; :moved_permanently<br>
blog comments powered by Disqus