TP5 控制器Controller中URL,跳转和重定向

<?php
namespace app\index\controller;
use think\Controller;
class Index extends controller
{
    public function index()
    {
		$this->redirect('/admin/login/');
     }
}

注意:要有 use think\Controller;

class Index extends controller

官方文档:https://www.kancloud.cn/manual/thinkphp5/118051

转载:https://blog.csdn.net/haibo0668/article/details/78436508

猜你喜欢

转载自blog.csdn.net/haibo0668/article/details/82825787