当前位置:  开发笔记 > 编程语言 > 正文

CodeIgniter路由文件夹错误

如何解决《CodeIgniter路由文件夹错误》经验,为你挑选了1个好方法。

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

controllers/public/Pubweb.php

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

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

有人能帮我吗?



1> Mr. ED..:

CodeIgniter 3上它不允许你有一个子文件夹,$route['default_controller']而是需要创建一个MY_Router.php文件,如下所示.

你需要创建一个MY_Router.php

application > core > MY_Router.php

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

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 {}

希望这可以帮助!

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有