|
发表于 2014-6-21 11:01:48
|
显示全部楼层
本帖最后由 caoniao 于 2014-6-21 11:03 编辑
在core/Route.php 140多行有这么一段代码,可以修改下,自己选择加载什么routes配置文件
PHP复制代码 if (defined('ENVIRONMENT') AND is_file(APPPATH .'config/'.ENVIRONMENT .'/routes.php'))
{
include(APPPATH .'config/'.ENVIRONMENT .'/routes.php');
}
elseif (is_file(APPPATH .'config/routes.php'))
{
include(APPPATH .'config/routes.php'); 复制代码
|
|