RailsのTOPページを表示する為のroutesを書いてみたっ!

まずは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になりました。