Apache - Permissions are missing on a component of the path

前端 未结 6 1086
南笙
南笙 2021-02-08 11:03

None of my website images are loaded, although paths are correct. In my Apache logs, I have plenty of :

(13)Permission denied: [client 87.231.108.18:57108] AH00         


        
6条回答
  •  长发绾君心
    2021-02-08 11:43

    What worked for me was that all component directories in the path needed execute permissions for all

    so if the path of the website is /home/user1/public_html/docroot

    chmod +x /home/user1/
    chmod +x /home/user1/public_html/
    chmod +x /home/user1/public_html/docroot/
    

提交回复
热议问题