I have a website which scopes all queries by domain name. Eg: the application_controller looks up the host and defines a @current_country upon which all questions are made into the database.
Now I'd like to move all of these into a single domain (for SEO reasons) under a subdirectory (eg: www.example.com/ireland/, www.example.com/uk etc). I have tried ...
ActionController::Routing::Routes.draw do |global|
global.with_options :path_prefix => '/country/:country' do |map|
# my routes go here
end
end
which almost works. The problem is that is mucks up all the named routes. For example, i have a
map.resources :pages
for the static content in the site. Going to ...
http://localhost:3000/country/ireland/pages/ebook
Which now yields ...
edit_page_url failed to generate from {:controller=>"pages", :action=>"edit", :country=>"ebook"}, expected: {:controller=>"pages", :action=>"edit"}, diff: {:country=>"ebook"}
Is there a way to scope the enquiry by countyr in the URL?
Many thanks in advance.
James