在我的codeigniter应用程序中,我正在使用codeigniter HMVC。 它的效果太棒了!
但我想拥有2个模块文件夹:
application/controllers/
文件夹applications/
文件夹中的一个。我无法弄清楚我需要如何更改modules_location
数组以便这样做。
此时我的modules_location
看起来像这样:
$config['modules_locations'] = array(
APPPATH.'modules/' => '../modules/',
);
我只需要添加一行来使这个系统工作,但是哪一个?
答案 0 :(得分:2)
我这样做:
$config['modules_locations'] = array(
APPPATH.'modules/core/' => '../modules/core/',
APPPATH.'modules/plugins/' => '../modules/plugins/',
);
它按预期工作。
我已经尝试将模块root外部化到应用程序文件夹之外,但到目前为止没有成功,我会继续测试,让你知道它是否有效,如果我不忘记在这里发布它。
干杯!