diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-12-27 18:41:33 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2010-12-27 18:41:33 +0100 |
commit | 5cbe4dd1f0d94791fe86e08111b77c1d57b83f54 (patch) | |
tree | 54cfcbe82e0632bf9d438c288f00ccf817d8f3d3 /application/config/routes.php | |
parent | bde25d971bfbf4a54f1d40eedfd3290ebb5f91e5 (diff) | |
parent | de3dbc36dab42d86c66d76efd6fdb1d1dce71ce8 (diff) |
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
Diffstat (limited to 'application/config/routes.php')
-rw-r--r-- | application/config/routes.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/application/config/routes.php b/application/config/routes.php index 614462fd9..5f9a58343 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -23,16 +23,23 @@ | RESERVED ROUTES | ------------------------------------------------------------------------- | -| There is one reserved routes: +| There area two reserved routes: | | $route['default_controller'] = 'welcome'; | | This route indicates which controller class should be loaded if the | URI contains no data. In the above example, the "welcome" class | would be loaded. +| +| $route['404_override'] = 'errors/page_missing'; +| +| This route will tell the Router what URI segments to use if those provided +| in the URL cannot be matched to a valid route. +| */ $route['default_controller'] = "welcome"; +$route['404_override'] = ''; /* End of file routes.php */ |