|
我下载了codeignite后解压到
D:\AppServ\www\MyItem下面(D:\AppServ\www这个为apache的目录)
取名为codeignite
然后再config.php中
这个改为
$config['base_url'] ="http://localhost/MyItem/codeignite/";
然后我再controllers中新建了blog.php文件
<?php
class Blog extends Controller
{
function index()
{
echo 'Hello World!';
}
}
?>
我在浏览器上访问http://localhost/MyItem/codeignite/index.php/blog/
出现
An Error Was Encountered The configuration file url.php does not exist.
请问是什么原因?谢谢 |
|