aboutsummaryrefslogtreecommitdiffstats
path: root/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 9bbc46376..94613f14f 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -18,6 +18,11 @@ ActionController::Routing::Routes.draw do |map|
map.connect ':controller/service.wsdl', :action => 'wsdl'
# Install the default route as the lowest priority.
- map.connect ':controller/:action/:id.:format'
- map.connect ':controller/:action/:id'
+ # FAI: Turned off for now, as to be honest I don't trust it from a security point of view.
+ #map.connect ':controller/:action/:id.:format'
+ #map.connect ':controller/:action/:id'
+
+ map.connect "/", :controller => 'frontpage'
+
end
+