本文轉自:http://blog.csdn.net/sinat_37328421/article/details/69267166 比方說你想配置預設路由為: $route['default_controller'] = 'index/home'; ci3.0之前是可以放在 controllers中 ...
本文轉自:http://blog.csdn.net/sinat_37328421/article/details/69267166
ci3.0之前是可以放在 controllers中的子文件夾中的,但是到了ci3.0就必須直接放在 controllers下麵,如果你堅持放在它的子文件夾下,那解決辦法如下:
找到 system > core > router.PHP 2978-301 行註釋掉。 ( 我的是 3.1.3版本 ) 如下:
- // if (sscanf($this->default_controller, '%[^/]/%s', $class, $method) !== 2)
- // {
- // $method = 'index';
- // }
然後在後面添加如下代碼:
- $index = strripos($this->default_controller, '/'); // 記錄 符號‘/’的下標
- if($index == false)
- {
- $class = $this->default_controller; // 沒有‘/’ 的可以直接賦值
- }else{
- $this->directory = substr($this->default_controller, 0, $index + 1); //目錄的字元串
- $class = substr($this->default_controller, $index + 1); //類的字元串
- }
- $method = $this->method; //預設方法
這樣預設路由放在子文件夾下無法找到的問題就解決了。