Hi
i have been trying to change the homepage of my app for over and hour and searched the net but cant find anything, i have map.root :controller => "welcome"
set in the routes.rb
file and i have deleted the index.html.erb
file in public and http://0.0.0.0:3000/
still takes me to the welcome to rails default page.
i have a welcome controller
class WelcomeController < ApplicationController
layout 'general'
def index
end
end
and i have a index.html.erb file in the views/welcome directory but still wont work.
any ideas why?
thanks