From 5c0ee5b1ddc17d080164253f2428babb9cd4dc64 Mon Sep 17 00:00:00 2001 From: John Dong Date: Wed, 29 Aug 2007 14:27:57 -0400 Subject: [PATCH] Route index.html to site index --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes.rb b/config/routes.rb index 82474df..cce54e9 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,6 +11,7 @@ ActionController::Routing::Routes.draw do |map| # You can have the root of your site routed by hooking up '' # -- just remember to delete public/index.html. + map.connect 'index.html', :controller => "site", :action => "index" map.connect '', :controller => "site", :action => "index" map.connect '/sitealizer/:action', :controller => 'sitealizer' map.connect 'quickvote/:action/:id', -- 2.30.2