无法使用代码点火器HMVC模式获取主页

时间:2018-09-11 06:33:48

标签: php codeigniter codeigniter-3 hmvc

我正面临一个问题。使用CodeIgniter HMVC模式时无法获得主页,并且出现以下错误。

  

找不到404页

     

未找到您请求的页面。

我在下面提供我的代码。

application / config / config.php:

$config['modules_locations'] = array(
    APPPATH . 'modules/' => '../modules/',
);

application / core / MY_Controller.php:

<?php

if (!defined('BASEPATH'))
    exit('No direct script access allowed');

/* load the MX_Router class */
require APPPATH . "third_party/MX/Controller.php";

/**
 * Description of my_controller
 *
 * @author https://roytuts.com
 */
class MY_Controller extends MX_Controller {

    function __construct() {
        parent::__construct();
        if (version_compare(CI_VERSION, '2.1.0', '<')) {
            $this->load->library('security');
        }
    }

}

/* End of file MY_Controller.php */
/* Location: ./application/core/MY_Controller.php */

模块/站点/控制器/site.php:

<?php

(defined('BASEPATH')) OR exit('No direct script access allowed');

/**
 * Description of site
 *
 * @author https://www.roytuts.com
 */
class Site extends MY_Controller {

    function __construct() {
        parent::__construct();
    }

    function index() {
        $this->load->view('home');
    }

}

application / config / routes.php:

$route['default_controller'] = 'site';

我在这里使用的是CodeIgniter 3的HMVC扩展,但是我找不到简单的页面。

0 个答案:

没有答案