4,251
社区成员
发帖
与我相关
我的任务
分享
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
$this->display();
//work correct!
}
}
<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function index(){
$this->redirect('Index/login');
//work wrong!
}
public function login(){
$this->display();
}
}