Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
yii フレームワークのモジュール フォルダのデフォルト パスは次のようになります。
Yii project -> protected -> modules
しかし、「モジュール」フォルダーを Yii プロジェクトの外に移動する必要があるため、新しいパスは次のようになります。
Yii project -> protected
modules(このフォルダは yii プロジェクトの外にあります)
modules
どうすればこれを達成できますか?
yii 構成ファイルで設定できます。つまり、次のようになります。
// .... Other configuration options... // Set module path: 'modulePath' => 'some/path', 'modules' => array( // .... Your modules configuration )