Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Matt Scilipoti

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Rails: 301 Permanent Redirect

First there was:
 headers["Status"] = "301 Moved Permanently"  
 redirect_to "http://www.newdomain.com"  

Then there was:
head :moved_permanently, :location => book_url(@book)


As of [7820] on 2007/10/09, there's a new redirector in town.
  # Examples: 
  #   redirect_to post_url(@post), :status=>:found 
  #   redirect_to :action=>'atom', :status=>:moved_permanently 
  #   redirect_to post_url(@post), :status=>301 
  #   redirect_to :action=>'atom', :status=>302

sweet.

see: http://dev.rubyonrails.org/changeset/7820
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS