Changeset 842 for trunk/system/config/routes.php
- Timestamp:
- 10/18/2007 12:30:59 PM (14 months ago)
- Files:
-
- 1 modified
-
trunk/system/config/routes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/routes.php
r647 r842 3 3 * Route Configuration 4 4 * ----------------------------------------------------------------------------- 5 * Routes can be defined as literal matches, regular expressions, and shortcuts.6 * The "_default" route is reserved for a blank URI string, eg: home page.7 *8 5 * Supported shortcuts are: 9 6 * … … 13 10 * User Guide: http://kohanaphp.com/user_guide/en/libraries/database.html 14 11 * 12 * @param string _allowed Permitted URI characters 13 * @param string _default Default route when no URI segments are found 15 14 */ 16 15 $config = array 17 16 ( 17 '_allowed' => 'a-z 0-9~%.:_-', 18 18 '_default' => 'user_guide' 19 19 );
