Skip to content

Instantly share code, notes, and snippets.

@sentientmonkey
Created March 7, 2013 21:42
Show Gist options
  • Save sentientmonkey/5112075 to your computer and use it in GitHub Desktop.
Save sentientmonkey/5112075 to your computer and use it in GitHub Desktop.
Foo::Application.routes.draw do
constraints(:host => /^example.com/) do
root :to => redirect("http://www.example.com")
match '/*path', :to => redirect {|params| "http://www.example.com/#{params[:path]}"}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment