I start rails server and the default(http://localhost:3000) page would be Ruby on Rails welcome page. Can I change this page or redirect to a controller? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Tue, Mar 31, 2009 at 1:57 AM, Zhao Yi <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>wrote:> > I start rails server and the default(http://localhost:3000) page would > be Ruby on Rails welcome page. Can I change this page or redirect to a > controller?Hi, you can add the following in your routes.rb file at the top within the block: map.root :controller => "some_controller_name", :action => "some_action_name" Also, you can find additional examples with the routes.rb file. I wish that this info helps. Good luck, -Conrad> > -- > Posted via http://www.ruby-forum.com/. > > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''m new to rails myself but I think you''ll find the welcome page in the index.html file in the public folder in your app. Kind regards, Dermot. On Mar 31, 9:57 am, Zhao Yi <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> I start rails server and the default(http://localhost:3000) page would > be Ruby on Rails welcome page. Can I change this page or redirect to a > controller? > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Tue, Mar 31, 2009 at 2:32 AM, derm_w <dermotward-zLKRkbt3P8esTnJN9+BGXg@public.gmane.org> wrote:> > I''m new to rails myself but I think you''ll find the welcome page in > the index.html file in the public folder in your app. > > Kind regards, > > Dermot. > > On Mar 31, 9:57 am, Zhao Yi <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote: > > I start rails server and the default(http://localhost:3000) page would > > be Ruby on Rails welcome page. Can I change this page or redirect to a > > controller? > > -- >In most Rails projects, one will delete the index.html file that''s located in rails_app/public directory. Now, you can create the index page as an action of a controller or you can simply create another index.html with what you want and place it in the public directory. Good luck, -Conrad> > > Posted viahttp://www.ruby-forum.com/. > > >--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---