如何修复“找不到“ GET / admin”的路由”

时间:2019-07-19 09:35:46

标签: php sonata-admin symfony-3.4

我正在尝试在Symfony 3.4项目中添加Sonata Admin Bundle。 我按照symfony documentation中的所有步骤进行操作,当尝试最后一步时,出现“找不到用于“ GET / admin”的路由”错误。我尝试用Google搜索解决此问题的方法,但找不到任何东西。

我知道我缺少一条路由,因为当我运行命令'php bin / console debug:router'时,没有列出'/ admin'路由,但是,我不知道在哪里添加此路由,因为我这是很新的。我的路线:

 -------------------------- -------- -------- ------ -----------------------------------
  Name                       Method   Scheme   Host   Path
 -------------------------- -------- -------- ------ -----------------------------------
  _wdt                       ANY      ANY      ANY    /_wdt/{token}
  _profiler_home             ANY      ANY      ANY    /_profiler/
  _profiler_search           ANY      ANY      ANY    /_profiler/search
  _profiler_search_bar       ANY      ANY      ANY    /_profiler/search_bar
  _profiler_phpinfo          ANY      ANY      ANY    /_profiler/phpinfo
  _profiler_search_results   ANY      ANY      ANY    /_profiler/{token}/search/results
  _profiler_open_file        ANY      ANY      ANY    /_profiler/open
  _profiler                  ANY      ANY      ANY    /_profiler/{token}
  _profiler_router           ANY      ANY      ANY    /_profiler/{token}/router
  _profiler_exception        ANY      ANY      ANY    /_profiler/{token}/exception
  _profiler_exception_css    ANY      ANY      ANY    /_profiler/{token}/exception.css
  _twig_error_test           ANY      ANY      ANY    /_error/{code}.{_format}
  homepage                   ANY      ANY      ANY    /
 -------------------------- -------- -------- ------ -----------------------------------

我希望我可以访问管理页面,而不是出现NotFoundHttpException错误。

0 个答案:

没有答案