【4.2 補足】ルーティング get "/articles", to: "articles#index" http://◦◦◦◦/articlesにアクセスしたら app/controllers/articles_controller.rbのindexを呼び出して app/views/articles/index.html.erbを表示します。 記事一覧ページのルーティングの例
URL例(articlesの場合) index 一覧画面の表示 GET /articles new 作成画面の表示 GET /articles/new show 表示画面の表示 GET /articles/123 create 作成機能の実行 POST /articles edit 編集画面の表示 GET /articles/123/edit update 更新機能の実行 PATCH /articles/123 destroy 削除機能の実行 DELETE /articles/123