传统
application/index/controller/Base.php
application/index/controller/User.php
6.1、定义中间件
https://www.kancloud.cn/manual/thinkphp5_1/564279
php think make:middleware 中间件的名称
这个指令会 application/http/middleware目录下面生成一个中间件文件。
6.2、注册中间件
6.2.1、控制器注册 pathinfo
6.2.2、自定义路由 middleware
6.2.3、配置文件 middleware.php
此文件可以放在模块下,就是对此模块注册此中间件,在application下面,就是全局中间件,说白了,就是所有的模块讲都有此中间件。