在CodeIgniter HMVC中,我想从根目录访问用户模块的模型。实际上,我想访问数据库,模型和所有东西。
答案 0 :(得分:0)
只管理config.php
中的配置项。即application/config/config.php
添加这样的配置项..
$config['modules_locations'] = array(
'modules/' => '../../modules/' //referencing at your root having modules folder
);
注意: 您的文件夹不一定必须命名为模块。您可以将其命名为my_modules等。
然后在根文件夹中创建一个文件夹modules
,并像访问应用程序文件夹一样访问所有内容。
希望它运作得很好。