F.P
F.P

Reputation: 17831

Allow indexes on subfolder from root htaccess

I want to add Indexes to a specific subfolder from my root-htaccess. Because of the CMS I use I can't put that htaccess into the subfolder as one would normally do.

I tried this

/.htaccess

<Directory /path/to/subfolder>
    Options +Indexes
</Directory>

but it results in an internal server error.

Upvotes: 0

Views: 1259

Answers (2)

Gerben
Gerben

Reputation: 16825

You could put an empty index.html file in the folders you don't want to show indexes. Kind of the other way around, but it might work for you.

Upvotes: 1

undone
undone

Reputation: 7888

In Apache manual : Context: server config, virtual host, so obviously you can not use this directive in .htaccess
Apache manual

Upvotes: 0

Related Questions