htaccess rewrite and auth conflict
- by Michael
I have 2 directories each with a .htaccess file:
html/.htaccess - There is a rewrite in this file to send almost everything to url.php
RewriteCond %{REQUEST_URI} !(exported/?|\.(php|gif|jpe?g|png|css|js|pdf|doc|xml|ico))$
RewriteRule (.*)$ /url.php [L]
and html/exported/.htaccess
AuthType Basic
AuthName "exported"
AuthUserFile…