1

我使用 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/bloglocalhost:8080/hello/index.php/Blog但他们都仍然显示404 not found
这正是我所期望的:“Haloo.. CI pertama”。

4

3 回答 3

0

如果您的 CI 文件夹名为“Hello”,那么您可以这样访问它:

http://localhost:8080/Hello/index.php/blog

怎么了!文件夹名称区分大小写,因此/hello/index.php/blog不起作用

于 2012-08-04T12:37:50.433 回答
-1

如果您没有为 Apache 启用重写模块,则您输入的 URL 不正确。对于考虑文件夹名称的设置,请尝试:

http://localhost:8080/Hello/index.php?/blog

编辑:添加了文件夹名称

于 2012-08-04T12:36:08.483 回答
-3

您需要在索引操作中呈现视图。

您的视图位于 application/views 中。所以你必须创建一个名为index.php那里的文件,你将把Hello World. 然后您将其添加到您的函数中:

$this->load->view('index');

希望这可以帮助。

于 2012-08-04T12:32:22.277 回答