我使用 CI v2.0.3 , xampp windows 1.7.0 ,并将 CI 文件夹重命名为“Hello”
,我在应用程序/控制器中创建了一个 Blog.php。
Blog.php 的内容是:
<?php
if(!defined('BASEPATH')) exit('No Direct Script Access Allowed');
class Blog extends CI_Controller {
function __construct()
{
parent::__construct();
}
function index()
{
echo "Haloo.. CI pertama";
}
}
我想访问localhost:8080/hello/index.php/blog
或localhost:8080/hello/index.php/Blog
但他们都仍然显示404 not found
。
这正是我所期望的:“Haloo.. CI pertama”。