CakePHP3の公式ドキュメントにあるチュートリアルでは、ログイン処理を下記のように記載しています <?php // In src/Controller/UsersController.php public function login() { if ($this->request->is('post')) { $user = $this->Auth->identify(); if ($user) { $this->Auth->setUser($user); return $this->redirect($this->Auth->redirectUrl()); } $this->Flash->error('Your username or password is incorrect.'); } } ここでリダイレクト処理をしているのは下記の部分です return $this->redir