In Symfony2 TWIG, when trying to generate a path like this:
<a href="{{ path('folder_new', { 'folder': folder.id }) }}">
I don't get the route I expected
Here is what I expected:
http://localhost/site/web/app_dev.php/Media/folder/new/2
here is what I in fact got from the path() command
http://localhost/site/web/app_dev.php/Media/folder/new?folder=2
Why do I get it formatted as a standard querystring (get) variable instead of a route?