Trying to get the virtual host directive going and getting Forbidden message with my virtual host. Usint Apache 2.0.53 on a windows XP home computer with php 5.0.3
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "e;E:/development/index.html"e;
ServerName development
# Other directives here
</VirtualHost>
is what I am using
I have set permissions on the development folder to read and write access but it still won't work
The other problem is once I put in my virtualhost I don't have permission to access anything else even in my htdocs folder.
Any and all help is welcome
phpScott
<VirtualHost *:80>
ServerName test
DocumentRoot "e;F:/websites/test"e;
<Directory "e;F:/websites/test"e;>
AllowOverride All
Options All
</Directory>
</Virtualhost>
or if you have all the vhosts under the same parent-dir, you could grant in the global section permissiosn to f:/websites...