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.

link|improve this question

65% accept rate
try to put imprint action method above index – Inori Jan 30 at 7:05
they are different controllers. – myName Jan 30 at 8:10
then include imprint controller route config before index... – Inori Jan 30 at 8:33
what do you mean with before index? – myName Jan 30 at 9:59
please check my answer below – Inori Jan 30 at 10:06
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Second route matches same pattern as first and interferes with it, so you need to put first in priority.

Somewhere in your project you're importing these two controllers routes as annotations (Probably /app/config/routing.yml). Looks something like this:

bar_route:
    resource: "@FooBundle/Controller/BarController.php"
    type:     annotation
    prefix:   /

Right now most likely second controller import is above first. Reverse that.

link|improve this answer
Hello, i imported the whole controller folder as an annotation.AcmeDemoBundle: resource: "@AcmeDemoBundle/Controller/" type: annotation prefix: / – myName Jan 30 at 10:16
Well just break it down manually like in my example and make sure controller with second route is listed first. – Inori Jan 30 at 10:35
when i put this into the routing.yml i have the following error: stackoverflow.com/questions/9093322/… – myName Feb 1 at 12:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.