4,249
社区成员




<?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();
}
}