2
I have 2 sf2 projects in different folders. When I access them through Urls
localhost/projeto01
and localhost/projeto02
m go to the same location (project01 even when access /project02).
I created after that a vhost to see if it solved but not solved:
The problem was before the creation of vhosts. No error appears in the logs of the application of sf2 or apache.
Apache version 2.4.6
SF Symfony Version 2.4
OS Version: Xubuntu 13.10
Note: The Urls accessed are different and the directories are different. Both projects print different messages in the view, but they are the same. Even accessing normally by localhost/project happens the problem.
I think the directive is missing
NameVirtualHost *:80
in each of the vhosts.– Rodrigo Rigotti
Probably is the Namevirtualhost *:80 same, but that would not explain the situation of localhost/project02 open the same folder contents localhost/project01 This made me curious about cas, is there a . htaccess in the root of the application folder that opens? this could capture the requisition and cause this symptom
– BrenoZan