thisisatest
在以下配置中,除了在 URL 为 时指定要使用控制器的每个路由之外,是否可以使用正则表达式或任何其他方法this-is-a-test/action
?我必须建立/扩展我自己的路由器类吗?
<?php
return array(
'_root_' => 'home/index', // The default route
'_404_' => 'error/404', // The main 404 route
//'hello(/:name)?' => array('welcome/hello', 'name' => 'hello')
);
/* end of config/routes.php */