ホームボタンをクリックすると、Rails はデフォルトの「ようこそ、Ruby on Rails に乗っています!」に移動します。最初に ROR をインストールした後に読み込まれるページ。app/views/static_pages/home.html.erb にあるファイルが読み込まれない理由がわかりません。
これが私のルートファイルです。
SampleApp::Application.routes.draw do
resources :users do
member do
get :following, :followers
end
end
resources :sessions, only: [:new, :create, :destroy]
resources :microposts, only: [:create, :destroy]
resources :relationships, only: [:create, :destroy]
root to: 'static_pages#home'
match '/static_pages/home', :to =>'static_pages#home'
# resource to get the standard actions for sessions
match '/signup', to: 'users#new'
match '/signin', to: 'sessions#new'
match '/signout', to: 'sessions#destroy', via: :delete
end