public function index(){ $this->success('Yes',U('Home/User/index'));//成功跳转 $this->error('error',U('Home/User/index'));//失败 //直接重定向跳转(3秒后跳转到指定路径) redirect(U('Home/User/index'), 3, '页面跳转中...'); //使用大U redirect('/Home/User/index', 3, '页面跳转中...'); redirect('http://baidu.com', 3, '页面跳转中...'); }