默认路由

/app/controller目录下,文件可以放在任意子目录或孙目录中。但必须确保文件名与类名一致,且不重复

示例:/app/controller/Main/testAction.php

  1. // http://www.billge.cc/test/
  2. class testAction extends baseAction
  3. {
  4. //默认路由index
  5. public function action_index()
  6. {
  7. //返回 test/test.tpl.php
  8. return $this->display('test/test');
  9. }
  10. }

同时也能在同一文件内配置多个子路由

  1. //子路由查找action_{$router}
  2. // http://www.billge.cc/test/demo1
  3. public function action_demo1()
  4. {
  5. //返回 test/demo1.tpl.php
  6. return $this->display('test/demo1');
  7. }
  8.  
  9. // http://www.billge.cc/test/demo2
  10. public function action_demo2()
  11. {
  12. //返回 test/demo2.tpl.php
  13. return $this->display('test/demo2');
  14. }