Class 'Controller' not found
Class 'Controller' not found<?php
class Blog extends Controller {
function Blog()
{
parent::Controller();
}
function index()
{
echo '你好,世界!';
}
}
?>
config.php
$config['base_url'] = "http://127.0.0.1/"; 控制器放在控制器文件夹下面。
页:
[1]