Apache - Permissions are missing on a component of the path

前端 未结 6 995
南笙
南笙 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:42

    Or you can run

    find . -type d -exec chmod 755 {} \;
    find . -type f -exec chmod 644 {} \;
    

    In those folders...

提交回复
热议问题