默认路由
在/app/controller
目录下,文件可以放在任意子目录或孙目录中。但必须确保文件名与类名一致,且不重复
示例:/app/controller/Main/testAction.php
// http://www.billge.cc/test/ class testActionextends baseAction- {
//默认路由index public function action_index ()- {
//返回 test/test.tpl.php return $this ->display ('test/test' );- }
- }
同时也能在同一文件内配置多个子路由
//子路由查找action_{$router} // http://www.billge.cc/test/demo1 public function action_demo1 ()- {
//返回 test/demo1.tpl.php return $this ->display ('test/demo1' );- }
// http://www.billge.cc/test/demo2 public function action_demo2 ()- {
//返回 test/demo2.tpl.php return $this ->display ('test/demo2' );- }