I have looked at many similar questions on SO such as this one and I can even solve my problem by making the changes in the global directory. However, I want to do the changes inside of the httpd-vhosts.conf file. Here is what I currently have:
<VirtualHost *:80>
ServerAdmin someEmail@gmail.com
DocumentRoot "c:/www/firstSite.dev"
<Directory "c:/www/firstSite.dev/">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
ServerName firstSite.dev
</VirtualHost>
However, I am still getting the error:
Forbidden
You don't have permission to access / on this server.
Any help would be appreciated.