ルートパスの記述方法
config/routes.rb
root to: 'コントローラー名#アクション名'
これでトップページを表示できます。
例 :
config/routes.rb
Rails.application.routes.draw do
root to: 'schedules#index'
end
上記の例では、schedulesコントローラーのindexアクションに遷移するという意味になります。
viewでの使用例
layous/application.html.erb
<body>
<header>
<%= link_to "SCHEDULE", root_path %>
</header>
</body>