routes.php 282 B

12345678910
  1. <?php
  2. return array(
  3. '_root_' => 'welcome/index', // The default route
  4. '_404_' => 'welcome/404', // The main 404 route
  5. 'hello(/:name)?' => array('welcome/hello', 'name' => 'hello'),
  6. 'json' => 'bench/json',
  7. 'db' => 'bench/db',
  8. 'fortunes' => 'bench/fortunes'
  9. );