Symfony 3 Routing: No route found for "GET /user/add" Symfony 3 Routing: No route found for "GET /user/add" symfony symfony

Symfony 3 Routing: No route found for "GET /user/add"


Did you have add in app/config/routing.yml

app:    resource: "@PIE10Bundle/Controller/"    type:     annotation

You have to check this (name="foo").

/** * @Route("/", name="homepage") */public function adduserAction(Request $request){    // replace this example code with whatever you need}