Hello
I need to setup a virtual host for my zend aplication
I managed to link all my zend framework with php and windows I am using wamp 2.2d and I am having a problem with the virtual host
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
ServerAdmin webmaster@localhost
DocumentRoot "c:/wamp/www"
ServerName localhost
ServerAlias localhost
ErrorLog "C:/wamp/logs/apache_error.log"
CustomLog "C:/wamp/logs/access.log" common
</VirtualHost>
<VirtualHost 127.0.0.1:80>
ServerAdmin admin@zendy.localhost
DocumentRoot "C:/workspace/zendy/public"
ServerName zendy
ServerAlias zendy
ErrorLog "C:/workspace/zendy/public/logs/apache_error.log"
CustomLog "C:/workspace/zendy/public/logs/access.log" common
allow from all
</VirtualHost>
And I have already enabledrewrite And vhost in httpd.conf
and modified my etc drivers host file accordanaly
If someone knows how to make this work only with httpd.conf I would be greatful
None of my methods or ideas worked
Thank you