Creating an index page for an app

Right now i have the default index file in the public folder, but how
would I make a certain controller the index

right now i have /site/ as my frontend. how could i route that to
replace that default “Welcome aboard
You’re riding the Rails!”

Matt M. wrote:

Right now i have the default index file in the public folder, but how
would I make a certain controller the index

right now i have /site/ as my frontend. how could i route that to
replace that default “Welcome aboard
You’re riding the Rails!”

In your routes.config add map.connect ‘’, :controller => ‘site’, :action
=> ‘index’