php – codeigniter – 讓控制器(controller)支援多層目錄
一般預設Controller 只能支援到下兩層
也就是如果文件在
/Controllers/app/flickr/connect.php
網址是
http://xxx.com/app/flickr/connect
這樣會 404 連不到
支援方法:
到 application/core 新增 MY_Router.php 並貼上以下程式碼
這樣就大功告成囉!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * 自定义路由类 * * 让CI控制器支持多级目录 * * @author SOHOCN.NET * @copyright Copyright © 2012 - 2018 www.sohocn.net All rights reserved. * @created 2012-12-13 * @updated 2012-12-13 * @version 1.0 */ class MY_Router extends CI_Router { /** * Set the directory name * * @access public * @param string * @return void */ function set_directory($dir) { $this->directory = $dir.'/'; } /** * Validates the supplied segments. Attempts to determine the path to * the controller. * * @access private * @param array * @return array */ function _validate_request($segments) { if (count($segments) == 0) { return $segments; } // Does the requested controller exist in the root folder? if (file_exists(APPPATH.'controllers/'.$segments[0].'.php')) { return $segments; } // Is the controller in a sub-folder? if (is_dir(APPPATH.'controllers/'.$segments[0])) { $temp = array('dir' => array(), 'path' => APPPATH.'controllers/'); foreach($segments as $k => $v) { $temp['path'] .= $v.'/'; if(is_dir($temp['path'])) { $temp['dir'][] = $v; unset($segments[$k]); } } $this->set_directory(implode('/', $temp['dir'])); $segments = array_values($segments); unset($temp); if (count($segments) > 0) { // Does the requested controller exist in the sub-folder? if ( ! file_exists(APPPATH.'controllers/'.$this->fetch_directory().$segments[0].'.php')) { if ( ! empty($this->routes['404_override'])) { $x = explode('/', $this->routes['404_override']); $this->set_directory(''); $this->set_class($x[0]); $this->set_method(isset($x[1]) ? $x[1] : 'index'); return $x; } else { show_404($this->fetch_directory().$segments[0]); } } } else { // Is the method being specified in the route? if (strpos($this->default_controller, '/') !== FALSE) { $x = explode('/', $this->default_controller); $this->set_class($x[0]); $this->set_method($x[1]); } else { $this->set_class($this->default_controller); $this->set_method('index'); } // Does the default controller exist in the sub-folder? if ( ! file_exists(APPPATH.'controllers/'.$this->fetch_directory().$this->default_controller.'.php')) { $this->directory = ''; return array(); } } return $segments; } // If we've gotten this far it means that the URI does not correlate to a valid // controller class. We will now see if there is an override if ( ! empty($this->routes['404_override'])) { $x = explode('/', $this->routes['404_override']); $this->set_class($x[0]); $this->set_method(isset($x[1]) ? $x[1] : 'index'); return $x; } // Nothing else to do at this point but show a 404 show_404($segments[0]); } } // END MY_Router Class |
參考 : http://codeigniter.org.cn/forums/forum.php?mod=viewthread&tid=16836