Rustam Mamat wrote:> i am newbie for rubyonrails. i want to start my application without
> welcome screen .if url http://localhost:3000 the it should be show the
> my application not the welcome screen .how can i do it .please any
> instruct .
Remove (or rename) public/index.html and add a route (to
config/routes.rb) like:
map.connect '''', :controller =>
''someController'', :action =>
''someAction''
to specify the controller and action for the initial page.
--
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
-~----------~----~----~----~------~----~------~--~---