fastadmin框架中的重定向
找到重定向,
原本文件是这个样子:
<?php namespace app\index\controller; use app\common\controller\Frontend; class Index extends Frontend { protected $noNeedLogin = '*'; protected $noNeedRight = '*'; protected $layout = ''; public function index() { return $this->view->fetch(); } }
改为:
<?php namespace app\index\controller; use app\common\controller\Frontend; class Index extends Frontend { protected $noNeedLogin = '*'; protected $noNeedRight = '*'; protected $layout = ''; public function index() { $this->redirect("/ZeGLzMFAkS.php"); //关键代码重定向 } }
切记:redirect中的路径是自己的这是我的