i have a staticController with actions for the following example links:
/register /imprint
this is the example annotation:
/**
*@Route("/imprint", name="user.static.imprint")
*/
And now i have the following annotation for linking other pages with dynamic linknames:
/**
*@Route("/{area}", requirements={"id" = "!imprint"}, name="user.area.index")
*/
I'm using the path() function in twig to create the links.
The generated link /imprint ist now routing to the second annotation. How can i avoid this problem?
Thank you very much.