On Mon, Mar 2, 2009 at 11:28 PM, Paul Na <[email protected]> wrote: > I have started making a site in ruby/rails and just wondering how to > set the page for the root/ dir of the site as i have got the other pages > done ie:- > > example/dir1 > example/dir2 > example/dir3 > example/dir4 > > but just wondering how to set the example/ page as it always appears as > the welcome to ruby page
I see 2 steps: 1) move the /public/index.html file to another name (e.g. $mv index.html index.html.ORIG) 2) add a route for '/' in config/routes.rb in the config/routes.rb near the the bottom of the file, but before the default routes, do something along the lines of map.connect( '', :controller=>'home') if you have a app/controllers/home_controller.rb HTH, Peter --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

