我是 Codeigniter 的新手,但由于某种原因我无法让它工作。我想做的很简单。我在文件夹中有一个post.php
文件controller
。内容post.php
如下:
class Posts extends CI_Controller{
function index(){
$this->load->view('hello.php');
}
}
然后我的hello.php
文件在views
文件夹内。它只是一个静态 HTML 页面。只是想先让它工作。
文件夹结构如下:htdocs/codeignitor
我希望在访问时获得 hello.php 的内容:
http://localhost:8888/codeigniter/index.php/posts
当我访问上面的网址时,它说Page Not Found
。但是默认的欢迎页面运行良好。