会員ページと管理者ページの認証を分ける実装を、Authenticationプラグインを使って行ってみました。 ・会員ページは、Membersテーブルを参照し、emailとpasswordでログイン ・管理者ページは、Usersテーブルを参照し、usernameとpasswordでログイン 1.teble作成 Membersテーブル Usersテーブル 2.Authenticationプラグイン 導入 参考: CakePHP Authentication 2.x Cookbook https://book.cakephp.org/authentication/2/ja/index.html CakePHP 4 で Authentication を Application.php の肥大化を防ぎつつ導入する方法 https://tt-computing.com/cake4-app-authc-