CodeIgniter 路由文件夹错误
Posted
技术标签:
【中文标题】CodeIgniter 路由文件夹错误【英文标题】:CodeIgniter Routing Folder Error 【发布时间】:2016-04-15 06:46:44 【问题描述】:我有 CodeIgniter 控制器文件,放在这里
controllers/public/Pubweb.php
我想将该文件设置为我的默认控制器,但是当我更改默认控制器路由值时,它会出错。我的路线代码:
$route['default_controller'] = 'public/pubweb';
有人可以帮我吗?
【问题讨论】:
你能发布你得到的确切错误吗?运行时、语法等? 错误说 404 Page Not Found, The page you request was not found.但我的文件夹中已经有 Pubweb.php 您导航到正确的网址吗?假设您没有修改您想要的 url(以删除 index.php):http:[YOUR URL]/index.php/public/pubweb/
你的控制器类名是什么?可能是您的控制器文件名不同。
@James Umm 我使用 .htaccess 删除了 index.php 但我认为我的 .htaccess 文件没有问题,因为我可以访问除默认控制器之外的所有文件控制器
【参考方案1】:
在 CodeIgniter 3 它不允许您在
$route['default_controller']
上拥有子文件夹,您需要创建一个 MY_Router.php 文件,如下所示。
您需要在
中创建一个 MY_Router.phpapplication > core > MY_Router.php
这是一个 MY_Router.php 文件,应该允许您在 Codeigniter 3 中使用 $route['default_controller'] = 'public/pubweb';
<?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
希望这会有所帮助!
【讨论】:
【参考方案2】:您可以在主控制器文件夹中创建一个新文件以进行路由。例如,我有一个像'controllers/coming/Commingsoon.php'
这样的目录结构。
如果我想运行 Commingsoon
作为我的默认控制器,那么我会这样做:
在控制器文件夹中创建新文件:Main_controller.php
:
class Main_controller extends CI_Controller
public function __construct()
parent:: __construct();
public function index()
redirect('comming');
在 routes.php 文件中:
$route['default_controller'] = 'main_controller';
$route['comming'] = 'comming/commingsoon/index';
希望这会有所帮助...
【讨论】:
以上是关于CodeIgniter 路由文件夹错误的主要内容,如果未能解决你的问题,请参考以下文章