making vhosts to work

They have: 1 posts

Joined: Mar 2012

I hope I put this in the right forum.
Local test server - WAMP
The documentroot is not functioning. Apache error log indicates wamp/www added to the path of each virtualhost.
I want the vhosts to work as written. I do not want my sites at wamp/www/skip

site:
g:/skip

hosts file:
127.0.0.1 skip.localhost
127.0.0.1

vhosts file:

NameVirtualHost *:80

DocumentRoot "g:/wamp/www"
ServerName 127.0.0.1
ServerAlias Localhost

DocumentRoot "g:/skip"
ServerName skip.local
ServerAlias skip

Options Includes Indexes FollowSymLinks MultiViews
Options Indexes FollowSymLinks
AllowOverride all
Order Deny,Allow
Deny from all
Allow from skip

I have spent hours research this and fail to find solution.
Many thanks to all who help.