blob: 614462fd9fea3f88cfcf56b8126d5c70eac4b68b [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
2/*
3| -------------------------------------------------------------------------
4| URI ROUTING
5| -------------------------------------------------------------------------
6| This file lets you re-map URI requests to specific controller functions.
7|
8| Typically there is a one-to-one relationship between a URL string
9| and its corresponding controller class/method. The segments in a
10| URL normally follow this pattern:
11|
Barry Mienydd671972010-10-04 16:33:58 +020012| example.com/class/method/id/
Derek Allard2067d1a2008-11-13 22:59:24 +000013|
14| In some instances, however, you may want to remap this relationship
15| so that a different class/function is called than the one
16| corresponding to the URL.
17|
18| Please see the user guide for complete details:
19|
20| http://codeigniter.com/user_guide/general/routing.html
21|
22| -------------------------------------------------------------------------
23| RESERVED ROUTES
24| -------------------------------------------------------------------------
25|
Derek Jonesbb768392010-03-05 11:32:53 -060026| There is one reserved routes:
Derek Allard2067d1a2008-11-13 22:59:24 +000027|
28| $route['default_controller'] = 'welcome';
29|
30| This route indicates which controller class should be loaded if the
31| URI contains no data. In the above example, the "welcome" class
32| would be loaded.
Derek Allard2067d1a2008-11-13 22:59:24 +000033*/
34
35$route['default_controller'] = "welcome";
Derek Allard2067d1a2008-11-13 22:59:24 +000036
37
38/* End of file routes.php */
Derek Jonesf0b39942010-03-25 10:08:20 -050039/* Location: ./application/config/routes.php */