php - 如何使用 codeigniter 3 在子文件夹中路由 Controller ?

标签 php codeigniter

我在 Controller 文件夹的子文件夹中创建了一个 Controller ,并在子文件夹中创建了一个登录 Controller 。

但是我无法访问此 Controller 并且已经在路由文件中给出了规则。

结构:

Controller
--admin
   ---login.php

路由规则:

$route['default_controller'] = 'admin/login';
$route['admin_login'] = 'admin/login';

最佳答案

默认情况下,codeIgniter 3 版本及更高版本无法在默认 Controller 路由中使用子文件夹。

为了能够使用default_controller中的子文件夹,您需要使用MY_Router.php

$route['default_controller'] = 'admin/login';

应用 >

应用程序>核心>

应用程序 > 核心 > MY_Router.php

MY_Router.php

<?php

class MY_Router extends CI_Router {
    protected function _set_default_controller() {

        if (empty($this->default_controller)) {

            show_error('Unable to determine what should be displayed. A default route has not been specified in the routing file.');
        }
        // Is the method being specified?
        if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2) {
            $method = 'index';
        }

        // This is what I added, checks if the class is a directory
        if( is_dir(APPPATH.'controllers/'.$class) ) {

            // Set the class as the directory

            $this->set_directory($class);

            // $method is the class

            $class = $method;

            // Re check for slash if method has been set

            if (sscanf($method, '%[^/]/%s', $class, $method) !== 2) {
                $method = 'index';
            }
        }

        if ( ! file_exists(APPPATH.'controllers/'.$this->directory.ucfirst($class).'.php')) {

            // This will trigger 404 later

            return;
        }
        $this->set_class($class);
        $this->set_method($method);
        // Assign routed segments, index starting from 1
        $this->uri->rsegments = array(
            1 => $class,
            2 => $method
        );
        log_message('debug', 'No URI present. Default controller set.');
    }
}

还要确保您遵循 naming 的 codeIgniter 方式文件

文件名:Login.php

<?php 

class Login extends CI_Controller {
    public function index() {

    }
}

关于php - 如何使用 codeigniter 3 在子文件夹中路由 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35620564/

相关文章:

mysql - 使用 WHERE AND 的多参数化 SQL 语法无效

php - 用什么替换 HTTP_GET_VARS?

php - Codeigniter 错误消息无法修改 header 信息

php - 什么是抽象类和接口(interface),什么时候在 PHP 中使用它们?

PHP动态字符串更新引用

php - 如何对多个 "get"查询实现 Codeigniter 语法单个 where 和 orderby 子句?

codeigniter - 添加 %20 而不是空格

第 6 行的 PHP 解析错误...似乎是我忽略的简单问题。

php - 来自 4 个表的复杂 mysql 查询

php - 创建 TRIGGER 给出错误 (MySQL)