Added default route

This commit is contained in:
Woody Gilk 2008-12-11 22:47:15 -06:00
parent be1df5257a
commit 1a715e60c6

8
system/config/routes.php Normal file
View file

@ -0,0 +1,8 @@
<?php
return array
(
'default' =>
Route::factory('(:controller(/:method(/:id)))')
->defaults(array('controller' => 'welcome', 'method' => 'index')),
);