vote up 2 vote down star

I am trying to get the root of my application to route to a default controller. From what I read, this should be possible with something like this at the bottom of my routes.rb file:

map.root :controller => 'albums'

or perhaps even:

map.home  '', :controller => 'albums'

However, when I try navigating to http://myhost:8000/, I just see the rails welcome page. I am restarting the application with the following command after making the change to routes.rb and before testing it:

sudo mongrel_cluster_ctl restart

Here is some more possibly pertinent environment information:

% rails -v
Rails 2.3.3

% ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux]

I am sure I'm missing something simple, but I can't see what it is. Any ideas?

flag

5 Answers

vote up 7 vote down check

Delete the public/index.html file.

link|flag
Thanks, I knew it had to be something simple! – pkaeding Jul 30 at 14:12
vote up 3 vote down
map.root :controller => 'albums'

Is the correct syntax.

A few things to try:

  • delete index.html from public.
  • Look at the output of "rake routes", do you see something along the lines of:
root   /  {:controller=>"albums", :action=>"index"}
  • Are you 100% sure the right cluster is being restarted: try running script/server and navigating to root on port 3000
link|flag
vote up 1 vote down

Routes at the end of routes.rb are the last to get used, therefore you may want to try with 'map.root...' at the top of your routes.rb

link|flag
vote up 3 vote down

Have you deleted the static public/index.html page that Rails creates? If this is still in your app it will be shown instead of the root page you defined in the routes.

link|flag
vote up 0 vote down

I was scratching my head for a while now. Deleting public/index.html file did the glitch for me. Thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.