Can anyone shed some light on how to redirect .html.erb subcategory files? which fits as follows:
view/pages/en/index.html.erb
and direct this i do the following things on route.rb
match ':lang/index', :to => 'pages/en#index'
and for the link code, I have this in the title
<%= link_to "Home", index_path %>
The error I get is
Routing Error uninitialized constant Pages
routes:

source share