Kevin
Kevin

Reputation: 2688

.htaccess Folder Browsing

I have a "site" setup to allow myself some "public" downloads. So in the root folder of the site I have an htaccess file containing

Options +Indexes 
IndexOptions +FancyIndexing

Inside the site I have a couple folders with files for downloading, etc...

How can I disable the ability to get into the parent folder once inside one of these folders?

For instance... http://o7thwd.com/dl/Mine

I'd like to prevent the Parent Directory from showing and being able to do anything...

Upvotes: 0

Views: 50

Answers (1)

kums
kums

Reputation: 2701

Remove the .htaccess file from the site's root folder.

Put the following (same as in your question) in .htaccess file in every sub-folder that needs to be public:

Options +Indexes 
IndexOptions +FancyIndexing

Upvotes: 1

Related Questions