403 Forbidden You don't have permission to access /folder-name/ on this server

前端 未结 5 1277
再見小時候
再見小時候 2020-12-23 15:09

I was looking for an answer to my problem, but I could\'nt find any answer which solves my case.

The problem is that I can\'t access the app folders in my var/www/ f

5条回答
  •  执念已碎
    2020-12-23 15:26

    **403 Forbidden **

    You don't have permission to access /Folder-Name/ on this server**

    The solution for this problem is:

    1.go to etc/apache2/apache2.conf

    2.find the below code and change AllowOverride all to AllowOverride none

     
        Options Indexes FollowSymLinks
        AllowOverride all      Change this to--->  AllowOverride none
        Require all granted
     
    

    It will work fine on your Ubuntu server

提交回复
热议问题