class Test extends CI_Controller {
function __construct(){
parent::__construct();
}
public function index()
{
echo 'Hello World!';
}
}
?>
试试
application/controllers/test.php
这样才可以
不然会显示错误
class Test extends CI_Controller {
function index()
{
echo 'Hello World!';
}
}
?>