好吧,我的 Codeigniter 页面中有一个奇怪的问题。我有一个控制器类books.php
> <?php
> //echo 'Hello';
> class Books extends CI_Controller{
> function __construct() {
> parent::__construct();
> }
>
>
> function main()
> {
> $this->load->view('main_view');
> }
>
> function input()
> {
> $this->load->view('input_view');
> } } ?>
现在,如果我将浏览器指向http://localhost/CodeIgniter/index.php/books
它,则会显示Now 如果我在类声明上方404 Page not found.
添加一个,它会显示 hello 并在页面顶部和该行之后出现相同的 404 错误。这是由于权限问题。有权限。echo 'Hello';
books.php
777