当我转到http://localhost:3000时,我希望我的控件转到rails中的登录控制器,而不是路由到index.html。我怎样才能做到这一点?
答案 0 :(得分:11)
您需要在config/routes.rb
中设置根路径,例如:
root 'login#index'
答案 1 :(得分:0)
在最新版本上继续 的配置/ routes.rb中强> 并使用您的默认控制器替换home #index Rails.application.routes.draw做
root:to => “家#指数” 端
答案 2 :(得分:-1)
除了NARKOZ的回答,您可能还想查看RailsGuides Getting Started guide。