views:

20

answers:

1

Is it possible two have to symfony routes (sfDoctrineRoute) with same url ( /:sf_culture/:slug/), but different model?

A: 

The first URL match is the route that will be used. You need to differentiate the URLs in some way for each route.

You should explore using sfDoctrineRouteCollection instead.

KRavEN