如何设置多个apache虚拟主机?

I have installed the Zend framework. However, when I try to set up the virtual host - apache. localhost doesn't work.its execute zend folder.its out side of wamp folder.

What have I done:

    <IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

Include "c:/wamp/alias/*"
NameVirtualHost localhost

<VirtualHost *:80>
   DocumentRoot "C:/websites/zendy/public"
   ServerName zendy

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "C:/websites/zendy/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>

<VirtualHost *:80>
   DocumentRoot "C:/wamp/www"
   ServerName localhost

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development

   <Directory "C:/wamp/www">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>

</VirtualHost>

how to work this two virtual hosts?