Alejandro
Alejandro

Reputation: 421

How to fix the directory that shows me a "forbidden" message when i open it in the browser?

I was using a hosting to run my site, lately it has been working fine but today i opened the site in the browser at "http://www.arquisanjose.org/ver2" and shows me the following message:

alt text

i´ll appreciate some of your help...

Upvotes: 0

Views: 210

Answers (2)

Chris Henry
Chris Henry

Reputation: 12010

You may not have the Options directive configured correctly for that folder. To enable for just that folder, you can drop an .htaccess with the following in that folder:

Options +Indexes

Upvotes: 1

jrn.ak
jrn.ak

Reputation: 36619

check your access permissions on the directory, they should be something like this:

  • Numerical: 0755
  • Flags: DRWXR-XR-X

Edit: From your screenshot, it looks like you've got some kind of authentication module (mod_auth_passthrough).. you might check to make sure it's configured properly.

Upvotes: 1

Related Questions