/
インデックスを実行するようにルート " " が設定されたデフォルトのコントローラーがあります。
public function indexAction() {
if ($this->get('security.context')->isGranted('IS_AUTHENTICATED_FULLY')) {
//render the logged in view(s)
$response = $this->render('Pan100MoodLogBundle:Default:index.html.twig');
} else {
//redirect to the login controller
$response = $this->redirect($this->generateUrl('login'));
}
return $response;
}
しかし、Symfony はルートを見つけることができません:
ルート「ログイン」は存在しません。500 内部サーバー エラー - RouteNotFoundException
何が間違っている可能性がありますか?FOSUserBundle を使用しています。