CodeIgniter Routing Folder Error(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.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 路由文件夹错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CodeIgniter 路由文件夹错误
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01