Setting index route in Symfony 2

前端 未结 6 970
孤街浪徒
孤街浪徒 2021-01-22 00:59

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

6条回答
  •  無奈伤痛
    2021-01-22 01:51

    The answer given by ManseUK is very much helpful but I have little elaboration

    1)

    # app/config/routing.yml
    homepage:
        pattern:   /
        defaults:  { _controller: AcmeHomeBundle:home:show }
    

    2) rename the app_dev.php to index.php and this will route to the home page automatically

提交回复
热议问题