I have by default -Indexes in my httpd.conf, I believe DA does this by default. The problem I have though is when my user tries to enable Directory Indexes in the .htaccess, we put...
Options Indexes
This makes it so that any file cannot be viewed in the other directories... so domain.com works but domain.com/support or /support/index.php doesn't. (it returns a 403 error no matter what the permissions are)
To fix this, just make sure you use +Indexes, I'm not sure really why it makes a difference but I figured it might be helpful to someone who runs into the same problem.
Btw, this was apache 2.2.8.
Good luck, hope this helps someone.
Options Indexes
This makes it so that any file cannot be viewed in the other directories... so domain.com works but domain.com/support or /support/index.php doesn't. (it returns a 403 error no matter what the permissions are)
To fix this, just make sure you use +Indexes, I'm not sure really why it makes a difference but I figured it might be helpful to someone who runs into the same problem.
Btw, this was apache 2.2.8.
Good luck, hope this helps someone.