[symfony-users] Re: Backend works on dev but not on prod

2010-11-23 Thread HiDDeN
Maybe I didn't explained myself well. I have created a routing class to differentiate between the two front controllers, so it works perfectly on my development machine and on my previous dedicated server. It is not working on this new one for some reason. Anyway I have switched the option to fals

Re: [symfony-users] Re: Backend works on dev but not on prod

2010-11-23 Thread Daniel Lohse
Because there can only be one app under the same virtual host without the script name in the URL. How is Apache going to differentiate between URLs? ;-) Cheers, Daniel On 23.11.2010, at 18:51, HiDDeN wrote: > I have identified the responsible of this behaviour: the > no_script_name option (in

[symfony-users] Re: Backend works on dev but not on prod

2010-11-23 Thread HiDDeN
I have identified the responsible of this behaviour: the no_script_name option (in settings.yml). When no_script_name is set to false all routes work correctly, but when it is set to true they don't work. My question is... why my frontend app works well with no_script_name set to true, but the ba