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
/j/e
/javascripts/embed.js
Rig
In Rails 4 and 5: (thanks @dennis)
get '/stories', to: redirect('/posts')
In Rails 3, you can redirect inside the routes.rb file.
match "/posts/github" => redirect("http://github.com/rails.atom")