the default_url_options seems not to be used , as I try to have a debug line in it .. no way
def default_url_options(options={})
if request.fullpath == "/"
{}
else
{ :locale => I18n.locale }
end
end
__________
scope "/:locale" do
... ....
end
constraints(:subdomain => nil, :host => host) do
end
root :to => "cms_content#render_html"
_________