12345678910 |
- <?php
- return array(
- '_root_' => 'welcome/index', // The default route
- '_404_' => 'welcome/404', // The main 404 route
-
- 'hello(/:name)?' => array('welcome/hello', 'name' => 'hello'),
- 'json' => 'bench/json',
- 'db' => 'bench/db',
- 'fortunes' => 'bench/fortunes'
- );
|