I know this is some basic stuff but i'm not sure why i'm getting this type of error.it's driving me nuts.we moved our site to bluehost from site5 ,i did all the config setting there but i'm getting No route matches [GET] error.
link : http://XXX.XX.XX.XX/~fuegotic
When i call the link this message shows
app_config.yml
development: &local
site_name: MY Site Name
site_url: http://XXX.XX.XX.XX/~fuegotic
app_url: http://XXX.XX.XX.XX/~fuegotic/appfolder/app/assets/images/
js_url: http://XXX.XX.XX.XX/~fuegotic/appfolder/app/assets/javascripts/
css_url: http://XXX.XX.XX.XX/~fuegotic/appfolder/app/assets/stylesheets/
upload_url: http://XXX.XX.XX.XX/~fuegotic/appfolder/public/
folder: appfolder
production:
<<: *local
staging:
<<: *local
test:
<<: *local
routes.rb has following line
root :to => 'home#index'
rails -v
Rails 3.2.13
ruby -v
ruby 2.1.4p265(2014-10-27 version 48166)[x86_64-linux]
rake routs has following route
root / home#index
Dose the non ASCII sign "~" in url is causing the problem?? I'm running out of ideas.Any help will be appreciated.
Thanks!!