I have an application and I want to redirect from my routing.yml (not .htaccess) all the routes to the same path:
home:
path: /
defaults: { _controller: MyBundle:Default:index }
And if a user enter in / or in /section or even /sajdfñldasf always will redirect to home path.
Is it possible to do this with Symfony2 and routing.yml?