Created
February 28, 2011 13:39
-
-
Save superp/847323 to your computer and use it in GitHub Desktop.
rails 2 routes redirect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#routes.rb | |
map.articles '/articles', :controller => 'posts', :action=>'index' | |
map.posts '/posts', :controller => 'posts', :action=>'redirect' | |
map.resources :posts | |
#posts_controller.rb | |
def redirect | |
redirect_to articles_path, :status => 301 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment