将Rails根路径映射到外部https url

时间:2019-04-25 13:16:52

标签: ruby-on-rails routing

我想重定向到某些特定URL上的根路径。例如,我进入了我的routes.rb

root "home#index"

当我运行rails服务器并在浏览器中打开它时,我希望我在https://example.com而不是http://localhost:3000上重定向。如果可以的话请帮助我。 我尝试过root "home#index", to: redirect('https://example.com') 但这没有用。

1 个答案:

答案 0 :(得分:0)

您可以使用root to: redirect('http://example.com/')