Possible to create this redirecting route in Rails?

前端 未结 3 1705
旧巷少年郎
旧巷少年郎 2021-01-30 08:33

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

Rig

3条回答
  •  迷失自我
    2021-01-30 09:33

    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")
    

提交回复
热议问题