error:
- Create directory (image files) based on Symbolic link
- Access the above image files, the server responded 403 Forbidden
- error log: Symbolic link not allowed or link target not accessible
Check
- Check Options +FollowSymLinks in http.conf
- Check the owner of directory (image files)
- Check whether Apache has no permission of directory (image files)
Resolutions
- $ chown -R apache. ./image
- $ find ./image -type d -exec chmod 750 {} ;