I can't find any info about the global route prefix in a Symfony 4 application. The only thing I've found is annotating the controllers with @route
. But I don't use annotations and I need all the controllers to have the same prefix.
Now I could do that in S3 like this in the app/config/routing.yml
file:
app:
resource: '@AppBundle/Controller/'
type: annotation
prefix: /foo
But S4 is bundleless and I can't do the same - I would have to create a bundle which I don't need.
Is it possible to define a global route prefix in Symfony 4 at all or I'm going to end up with prefixing every single root/creating a custom route loader, especially if I configure routes in YAML?