I am using xampp and windows machine.
I am trying to run a existing phalcon project in my pc .
If i try "localhost/odc/public" , it runs the project but could not load any styling.
So i think if i can project with url localhost , it will solve the problem. After going through online, i found that i need to edit apache/conf/extra/httpd-vhosts.conf.
So I tried the following , but didn't work.
<VirtualHost localhost>
DocumentRoot "/xampp/htdocs/odc/public"
ServerName localhost
<Directory "/xampp/htdocs/odc/public">
Require all granted
</Directory>
</VirtualHost>