Unable to load the requested file
本帖最后由 高强进 于 2012-3-7 14:05 编辑An Error Was Encountered
Unable to load the requested file: admin/index.php
这个是什么问题,我按照手册一步步来的啊,下面是我的路径:在admin子文件夹下的index.php控制器
http://localhost/ci/index.php/admin/index
----------------------------------
index.php
----------------------------------
<?php
class Index extends CI_Controller {
function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('admin/index');
}
}
?>
admin 在哪个文件夹? Hex 发表于 2012-3-7 14:04 http://codeigniter.org.cn/forums/static/image/common/back.gif
admin 在哪个文件夹?
D:\ci\app\controllers\admin
这个就是,在控制器下创建了一个admin子文件夹
D:\ci\app\views\admin
在视图里也创建也相应的admin子文件夹,里面放了index.html文件 顶,有木有高手啊 帮帮忙啊 $this->load->view('admin/index');
改成
$this->load->view('admin/index.html');
因为默认视图是 .php 为扩展名的,如果你不使用 .php 必须明确给出扩展名。 解决了,视图文件不是index.html,而是index.php:lol Hex 发表于 2012-3-7 14:22 static/image/common/back.gif
改成
因为默认视图是 .php 为扩展名的,如果你不使用 .php 必须明确给出扩展名。 ...
对的 ,就是这个问题
页:
[1]