xampp admin page access forbidden
- by Vihaan Verma
I m new to apache world ! I read some docs online to setup virtual host . Which works fine !
Here are the content of httpd-vhosts.conf file
<Directory C:/vhosts>
Order Deny,Allow
Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "C:/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/vhosts/phpdw"
ServerName phpdw
</VirtualHost>
But now when I access the xampp control panel and try accessing the apache admin page I get access defined eror (403) . My guess is that there needs to be some more configuration in this file to allow access to localhost. I could not find anything relevant . Thanks