如何在CodeIgniter 3中使用默认控制器路由中的子文件夹 [英] How to use a sub folder in default controller route in CodeIgniter 3

查看:266
本文介绍了如何在CodeIgniter 3中使用默认控制器路由中的子文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

虽然设置 $ route ['default_controller'] 与out子目录,它是工作,但我想更改它在子目录,它不工作。

While setting $route['default_controller'] with out sub directory it is working but I wanted to change it inside sub directory and its not working.

推荐答案

默认codeigniter 3你将不能在你的default_route子文件夹

By default codeigniter 3 you will not be able to have sub folder in your default_route

您需要使用MY_Router.php

You need to use a MY_Router.php

位于application> core> MY_Router.php

Located in application > core > MY_Router.php

将允许您在CI3中的default_controller中使用子文件夹

This will enable you to use sub folder in default_controller in CI3

<?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.');
    }
}

然后这应该让你能够做



Then this should let you be able to do

$route['default_controller'] = 'subfolder/controller/function';

这篇关于如何在CodeIgniter 3中使用默认控制器路由中的子文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆