用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2347|回复: 3
收起左侧

错误!请问怎么解决,搞了老半天了

[复制链接]
发表于 2009-4-30 20:33:52 | 显示全部楼层 |阅读模式
我下载了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.
       
请问是什么原因?谢谢
发表于 2009-4-30 21:16:52 | 显示全部楼层
看看codeignite/system/config/url.php,存不存在,不存在则发布的包有问题、要么就是你下载的包有问题
 楼主| 发表于 2009-4-30 21:55:00 | 显示全部楼层
的确没有这个文件,但是后来我把下载的包放在D:\AppServ\www下  通过http://localhostcodeignite/index.php/blog/就可以访问了 这是什么原因?
发表于 2009-4-30 22:52:34 | 显示全部楼层
$config['base_url']    ="http://localhost/MyItem/codeignite/";不对
应该写成: $config['base_url']    ="http://localhost/MyItem/";

本版积分规则