Mobile app version of vmapp.org
Login or Join
Sarah324

: Access Forbidden XAMPP Ok so I've been having some trouble accessing a subfolder inside a project folder. I have the following structure: -htdocs -Project -admin The problem

@Sarah324

Posted in: #Apache #Xampp

Ok so I've been having some trouble accessing a subfolder inside a project folder. I have the following structure:

-htdocs
-Project
-admin


The problem I'm havin is when I type localhost:8080/Project/admin (I changed the apache port to 8080) I get the Access Forbidden! error. I've read about the "New security concept" and tried to comment out the Require local line in the httpd-xampp.confbut still have no luck. Does anyone know how to solve this? Thanks in advanced!

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Sarah324

1 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

Hm... try to put this code into your host file.

<Directory "/path/to/your/dir">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme