The usual solution when you create routes in symfony and you want to have one route like
/{username}
so that it does not conflict with othe
I can't comment on the answer, so I will leave how I had to write it in Symfony 2.3 to get it to work:
Home: resource: "@AcmeBundle/Controller/HomeController.php" prefix: /home #optional type: annotation
Notice the change of "\" to "/" and using .php at the end of controller name.