如果你使用了多级控制器的话,可以设置controller_auto_search参数开启自动定位控制器,便于URL访问,例如首先在配置文件中添加:

    1. 'controller_auto_search' => true,

    然后定义控制器如下:

    1. namespace app\index\controller\one;
    2. use think\Controller;
    3. class Blog extends Controller
    4. {
    5. public function index()
    6. {
    7. return $this->fetch();
    8. }
    9. public function add()
    10. {
    11. return $this->fetch();
    12. }
    13. public function edit($id)
    14. {
    15. return $this->fetch('edit:'.$id);
    16. }
    17. }

    我们就可以直接访问下面的URL地址了:

    1. http://serverName/index.php/index/one/Blog