Symfony 3.4。没有任何路线正常工作 - 找不到" GET /的路线

时间:2018-03-24 15:52:00

标签: symfony routing symfony-3.4

我的Symfony 3.4项目不再识别任何路线。在终端(php bin / console debug:router)中调试路由确实显示了所有路由,但app_dev.php不断给出错误消息。路由已启用并在routing.yml文件中设置正确。

清除缓存也不起作用。

mail_chimp:     资源:" @ MailChimpBundle / Controller /"     type:annotation     前缀:/

/**
 * @Route("/klanten/lijst")
 */
public function klantenLijstAction() {
    return;
}

screenshot 感谢。

1 个答案:

答案 0 :(得分:0)

> the routing tries to match routes one by one in the order of their definitions; whenever one matches, work is done

在路线列表图片中,您希望有三条(可能更多)路线来回答网址' /'。哪一个应该运行控制器动作?

您应该为不属于索引路径的网址设置前缀。