Forum Moderators: phranque
My current .htaccess in the root folder of the web site overrides the .htaccess in the passwd'd directory so you can never log in.
This is what I want to happen:
1)
http://www.example.com/
/u/b/brent/www.example.com/index.php
2)
http://www.example.com/phpMyAdmin
/u/b/brent/www.example.com/phpMyAdmin/index.php
(This folder has a .htaccess which should ask for a username/password)
3)
http://www.example.com/directory/which/doesnt/really/exist
/u/b/brent/www.example.com/index.php
RewriteCond %{REQUEST_URI} !^/phpMyAdmin
RewriteRule <your pattern and substitution>
Jim