Possible to create this redirecting route in Rails?

前端 未结 3 1703
旧巷少年郎
旧巷少年郎 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:31

    Root path

    You can make the root path redirect to an external website:

    root to: redirect('https://www.lucascaton.com.br/en')
    

提交回复
热议问题