I just uploaded symfony site to the server but it's routing is not working. my app/config/routing.yml is look like this
acme_data:
resource: "@AcmeDataBundle/Resources/config/routing.yml"
host: "etc.makemeright.in"
prefix: /
acme_blog:
resource: "@AcmeBlogBundle/Resources/config/routing.yml"
host: "makemeright.in"
prefix: /
app:
resource: "@AppBundle/Controller/"
type: annotation
But when i hit http://www.makemeright.in it call a Controller in AppBundle while it should be calling according to @AcmeBlogBundle/Resources/config/routing.yml".
Maybe it's not recognizing host or something else.
This project is working fine on my local system. what I am doing wrong ?? please help.
I followed Steps to move Symfony 2 project to hosting? to upload my site to server.