xampp admin page access forbidden
Posted
by
Vihaan Verma
on Server Fault
See other posts from Server Fault
or by Vihaan Verma
Published on 2012-08-28T20:45:54Z
Indexed on
2012/08/28
21:42 UTC
Read the original article
Hit count: 293
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
© Server Fault or respective owner