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

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

PHP redirect code (with correct header)

   1  
   2  <?php
   3  header ('HTTP/1.1 301 Moved Permanently');
   4  header('Location: http://domain.com/');
   5  exit;
   6  ?> 

Rails: 301 Permanent Redirect

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

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


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

sweet.

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