Index.php 189 B

12345678910111213
  1. <?php
  2. namespace app\index\controller;
  3. use think\admin\Controller;
  4. class Index extends Controller
  5. {
  6. public function index()
  7. {
  8. $this->redirect(url('@admin/login'));
  9. }
  10. }