codeIgniter3.*支持controller带目录

时间:2019-08-11 09:08:54
【文件属性】:

文件名称:codeIgniter3.*支持controller带目录

文件大小:16KB

文件格式:PHP

更新时间:2019-08-11 09:08:54

codeigniter3

一个网站项目应该是很多模块,再根据模块来区分controller,解决办法如下: 让codeIgniter3.*支持controller带目录,直接覆盖system/core/CodeIgniter.php,如果不放心可以先备份再还原或者用文本比较工具先看看。 使用方法:如controllers/common/home.php //注意class的名字要带上目录名 class CommonHomeController extends CI_Controller { public function index() { echo 'home'; } public function test() { echo 'test'; } } 则访问就是/common/home(可不带index)和/common/test


网友评论