Disable directory listings in all but one folder, using htaccess?
.htaccess
Solution
Create a htaccess file with `Options +Indexes` in the folder you want to list.
Be sure to remove any index files too.
Problem
Right now, I'm using `Options -Indexes` to hide access to all directory listings on a website of mine. What I've discovered however is that I need directory access to a particular folder: `../Resource/Other/` Is there any way of applying a logical NOT rule to htaccess to allow access to certain folders, while disabling directory access by default? Or do I have to approach it from the other angle and enable directory listings globally and then selectively disable them folder by folder?