新建Base.php控制器,所有的页面继承自它 <?php namespace app\index\controller; use think\Controller; class Base extends Controller { public function __construct(){ /** * 不验证用户登陆的页面 */ //不验证用户登陆的页面 $exception_arth_list=[ 'member/users/login', //登陆页面 'member/users/reg'…