0

我的本地主机中有一个名为blog.php的控制器。要访问它,我在地址栏中输入http://localhost/ci/index.php/blog。在教程中它说它将显示Hello World但我得到的显示是一个包含 blog.php 代码和 404 Page Not Found 的页面。

这是代码。

*<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Blog extends CI_Controller {
    /**
     * Index Page for this controller.
     *
     * Maps to the following URL
     *      http://example.com/index.php/blog
     *  - or -  
     *      http://example.com/index.php/blog/index
     *  - or -  
     * So any other public methods not prefixed with an underscore will
     * map to /index.php/blog/<method_name>
     * @see http://codeigniter.com/user_guide/general/urls.html
     */
    public function index()
    {
        echo "Hello World";
    }
}
/* End of file Blog.php */
/* Location: ./application/controllers/blog.php */*

任何人请帮我知道是什么问题。

4

1 回答 1

-1

您使用的是哪个版本的 CodeIgniter,因为 CI_Controller 用于 CI 上的旧版本。你有没有尝试做

class Blog extends Controller {
}

或者

class Blog extends MY_Controller {
}

MY_ 在您的 config.php 文件中设置的位置。

于 2012-08-12T06:49:59.327 回答