remove old match route statement from readme

This commit is contained in:
2014-11-10 12:44:38 +01:00
parent b6fec4f880
commit b5a24fd346
+1 -1
View File
@@ -84,7 +84,7 @@ get '/sitemap(.:format)' => 'pages#sitemap'
scope '(/:locale)', constraints: {locale: /nl|be|de|fr|en/}, defaults: { locale: :nl } do
get "/:name" => "pages#show", constraints: {name: /.*/}, as: :page
end
match "/*url" => "pages#not_found"
get "/*url" => "pages#not_found"
root :to => 'pages#home'
```