I\'ve got Symfony2 installed, and a mostly working site, the only issue is I don\'t know how to set a default route. Currently, I access my index and other routes with the follo
Just create a route that maps to the / pattern :
/
# app/config/routing.yml homepage: pattern: / defaults: { _controller: AcmeHomeBundle:home:show }
This will route to whatever controller you specify.