Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to do a redirect in the routes file of a Rails app?

Specifically, I'd like to forward /j/e to /javascripts/embed.js

Right now the only way I can think to do it is to create a j controller with an e method that redirects to that.

share|improve this question

3 Answers

up vote 3 down vote accepted

Assuming rails version prior to 3.

You can create a new RedirectController or tuck a single function away in an existing controller to do something like the following:

map.js_embed '/j/e',
    :controller => :redirect_controller,
    :action => :some_function,
    :path => "embed"

Then your function would do this:

def some_function
  if params[:path]
    redirect_to "/javascripts/#{params[:path]}.js"
  end
end

Or something to that effect.

share|improve this answer

New with Rails 3, you can redirect inside the routes.rb file.

match "/posts/github" => redirect("http://github.com/rails.atom")
share|improve this answer
3  
2  
Thanks! I also needed to include an id in my redirect. For those that need it /:id/ in the match can be referenced as /%{id}/ in the redirected url... – Doug English Nov 21 '12 at 13:18

The Routing Tricks plugin enables you to define redirects in the routing file. Works well for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.