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
orにアクセスしたいのですlocalhost:8080/hello/index.php/Blog
が、両方ともまだ表示され404 not found
ます。
代わりに期待するのは、「Haloo.. CI pertama」です。