我有一個控制器名爲blog.php在我的本地主機。要訪問它,我在地址欄中鍵入http://localhost/ci/index.php/blog。在教程中它說它會顯示Hello World,但我得到的顯示是一個包含blog.php代碼和404 Page Not Found的頁面。codeigniter控制器加載
這是代碼。
*<?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 */*
任何人請幫助我知道是什麼問題。
你可以發佈config/config.php文件代碼嗎?也是http:// localhost/ci/working?它顯示什麼?而且你還沒有在PHP之前使用*,對吧? – 2013-07-17 16:59:54
yes Mr.web是正確的。您的codeigniter文件在ci文件夾內?嘗試在google或SO上進行搜索,並找到相同的問題,您會發現很多問題和答案。 – 2014-11-16 18:14:20