I have a directory ("files") where sub-directories and files are going to be created and stored over time. The directories also need to deliver a directory listing, using "options indexes", but only if a user is authenticated, and authorized. I have that part built, and working, by doing the following:
<Directory /var/www/html/files>
Options Indexes
IndexOptions FancyIndexing SuppressHTMLPreamble
HeaderName /includes/autoindex/auth.php
</Directory>
Now I need to take care of file delivery. To force authentication for files, I have built the following:
RewriteCond %{REQUEST_URI} -f
RewriteRule /files/(.*) /auth.php
I also tried:
RewriteCond %{REQUEST_URI} !-d
RewriteRule /files/(.*) /auth.php
Both directives are not redirecting to auth.php when I request:
foo.com/files/bar.pdf
foo.com/files/baz/bar.pdf
Ideas?