我们如何才能改变“;模块”;Yii框架中的文件夹


How can we change the path of "modules" folder in Yii framework

yii框架中模块文件夹的默认路径如下

Yii project -> protected -> modules

但是我需要将"模块"文件夹移到Yii项目之外,所以新路径应该是这样的

Yii project -> protected

modules(此文件夹在yii项目之外)

我怎样才能做到这一点?

您可以在yii配置文件中设置它,即:

// .... Other configuration options...
// Set module path:
'modulePath' => 'some/path',
'modules' => array(
    // .... Your modules configuration
)