i got 2 dyndns adresses : test1.dyndns.org and test2.dyndns.org for example
i want to point
test1.dyndns.org to /var/www/localhost/htdocs
and
test2.dyndns.org to /var/www/localhost/htdocs/test2
my /etc/apache2/vhosts.d/00_default_vhosts.conf looks like this :
Code: Select all
# Host test1.dyndns.org
<VirtualHost *:80>
DocumentRoot /var/www/localhost/htdocs/
ServerName test1.dyndns.org
</VirtualHost>
# Host test2.dyndns.org
<VirtualHost *:80>
DocumentRoot /var/www/localhost/htdocs/test2
ServerName test2.dyndns.org
</VirtualHost>
but i am just receiving this error message either i use test1 or test2
Code: Select all
Forbidden
You don't have permission to access / on this server.
Apache Server at test1.dyndns.org Port 80Code: Select all
Forbidden
You don't have permission to access / on this server.
Apache Server at test2.dyndns.org Port 80can someone give me a hint ?
thanks in advance


