RailsのTOPページを表示する為のroutesを書いてみたっ!
2017年1月10日
まずはTOPページ用のControllerとメソッドを追加しました。
rails g controller root index
あとは、routes.rbにroot toを追加。
get 'root/index' root to: 'root#index'
これで、http://localhost:3000で表示されるページがroot_controller.rbのindexになりました。
まずはTOPページ用のControllerとメソッドを追加しました。
rails g controller root index
あとは、routes.rbにroot toを追加。
get 'root/index' root to: 'root#index'
これで、http://localhost:3000で表示されるページがroot_controller.rbのindexになりました。