Skip to content

Instantly share code, notes, and snippets.

@fnhipster
Created December 27, 2010 17:33
Show Gist options
  • Save fnhipster/756325 to your computer and use it in GitHub Desktop.
Save fnhipster/756325 to your computer and use it in GitHub Desktop.
Route 404 in Rails 3
# routes.rb
...
constraints(:subdomain => "sub_domain_name") do
match "*id" => "pages#four_o_four"
end
...
# pages_controller.rb
...
def four_o_four
...
end
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment