Answers for "xampp virtual host Access forbidden!"

PHP
0

xampp virtual host Access forbidden!

Check your error logs you find out the error is 
  "Options FollowSymLinks and SymLinksIfOwnerMatch are both off, 
  so the RewriteRule directive is also forbidden due to its similar ability 
  to circumvent directory restrictions"
  
 This error seems to be solved by adding
  
<directory "C:/xampp/htdocs/ocosystem/trunk/ocosystem/public">
     Allow from all
</directory>

Full way like this :

<VirtualHost *:80>
    ServerName ocosystem
    DocumentRoot "C:/xampp/htdocs/ocosystem/trunk/ocosystem/public"
    ErrorLog "C:/xampp/htdocs/ocosystem/trunk/ocosystem/storage/logs/ocosystem-error.log"
    CustomLog "C:/xampp/htdocs/ocosystem/trunk/ocosystem/storage/logs/ocosystem-access.log" combined
    <Directory "C:/xampp/htdocs/ocosystem/trunk/ocosystem/public">
        #AllowOverride All      # Deprecated
        #Options Multiviews     # Deprecated
        #Allow from all         # Deprecated
        
        # --New way of doing it
        Require all granted
    </Directory> 
</VirtualHost>
Posted by: Guest on October-20-2020

Browse Popular Code Answers by Language