Changeset 1668 for trunk/system/config/routes.php
- Timestamp:
- 01/04/2008 10:01:49 AM (12 months ago)
- Files:
-
- 1 modified
-
trunk/system/config/routes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/config/routes.php
r1653 r1668 1 1 <?php defined('SYSPATH') or die('No direct access allowed.'); 2 2 /** 3 * @package Core 4 * 3 5 * Supported Shortcuts: 4 6 * :any - matches any non-blank string … … 7 9 8 10 /** 9 * Permitted URI characters. 11 * Permitted URI characters. Note that "?", "#", and "=" are URL characters, and do 12 * not to be added here. 10 13 */ 11 14 $config['_allowed'] = 'a-z 0-9~%.,:_-'; 12 15 13 16 /** 14 * Default route when no URI segments are found.17 * Default route to use when no URI segments are available. 15 18 */ 16 19 $config['_default'] = 'welcome';
