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

查看:140
本文介绍了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']

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.

您需要创建一个MY_Router.php in

You will need to create a MY_Router.php in

application > core > MY_Router.php

这里是一个MY_Router.php文件,应该允许您使用

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.php class 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天全站免登陆