CodeIgniter 路由文件夹错误 [英] CodeIgniter Routing Folder Error

查看:21
本文介绍了CodeIgniter 路由文件夹错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有 CodeIgniter 控制器文件,放在这儿

I have the CodeIgniter controller file, placed in here

controllers/public/Pubweb.php

并且我想将该文件设置为我的默认控制器,但是当我更改默认控制器路由值时,它会出错.我的路线代码:

and I want to set that file as my default controller, but when I change the default controller route value, it will goes error. My route code :

$route['default_controller'] = 'public/pubweb';

有人可以帮我吗?

推荐答案

CodeIgniter 3 上它不允许您在 $route['default_controller'] 上有一个子文件夹,您需要创建一个 MY_Router.php 文件,例如下面.

On CodeIgniter 3 It does not allow you to have a sub folder on $route['default_controller'] you will instead need to create a MY_Router.php file like below.

您需要在

application > core > MY_Router.php

这是一个 MY_Router.php 文件,它应该允许您在 Codeigniter 3 中使用 $route['default_controller'] = 'public/pubweb';

Here is a MY_Router.php file that should allow you to use $route['default_controller'] = 'public/pubweb'; in Codeigniter 3

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

确保您的文件的文件名和类名的首字母大写.Pubweb.phpclass Pubweb extends CI_Controller {}

Make sure your files have first letter upper case on file name and class name. Pubweb.php and class Pubweb extends CI_Controller {}

希望这有帮助!

这篇关于CodeIgniter 路由文件夹错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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