http://example.com/pages
というURLへのアクセスは、indexアクションとなるのに、
http://example.com/pages/index
というURLへのアクセスは、showアクションに振り分けられてしまう。
Unknown action The action 'show' could not be found for 〜
The action 'show' could not be found for 〜
これはscaffoldによって書かれる、routes.rbのresourcesが原因だったりする。
config/routes.rb
resources :pages
これをコメントアウトすればOK。