So I added a new vhost, api.tessitura.com to my apache client within the WAMP server installed on my local box where I have 2 other vhost sites running. Modified my hosts file so I can access it locally, however I'm getting a 403 Forbidden "You don't have permission to access / on this server." Error when I load the site. The pre-existing vhost sites are totally fine and accessible. I've restarted my WAMP client, not sure what the problem could be.
Here is my http-vhosts.conf:
NameVirtualHost *:80
<VirtualHost *:80>
ServerName tessitura.local.com
ServerAlias tessitura.local.com
DocumentRoot "c:/dev/sites/tessitura.local.com"
<Directory "c:/dev/sites/tessitura.local.com">
Order Allow,Deny
Allow from All
Require local
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName api.tessitura.com
ServerAlias api.tessitura.com
DocumentRoot "c:/dev/sites/api.tessitura.com"
<Directory "c:/dev/sites/api.tessitura.com">
Order Allow,Deny
Allow from All
Require local
</Directory>
</VirtualHost>
#LOCAL
<VirtualHost *:80>
DocumentRoot "c:/wamp/www"
ServerName localhost
ServerAlias localhost
</VirtualHost>
Any ideas?