[Apache] How to Fix 'Forbidden You don't have permission to access xxx on this server'
Here’s a memo on how to deal with Apache access permission errors like the following:
Error Message
Forbidden
You don't have permission to access xxx on this server
chmod o+x /home/myapp.com
Writing settings like Order deny,allow or Allow from all incorrectly in httpd.conf will prevent access.
Options FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
・ホーム・ディレクトリ以下のpublic_htmlディレクトリをWebで公開してのに,アクセスできない:ITpro
・apache - Forbidden You don’t have permission to access / on this server - Stack Overflow
That’s all from the Gemba.