I had to modify my .htaccess file when I added the 'vanity URL' feature which allows my site's members to enter a url in the form of myWebsite/membersName and be forwarded to their homepage which until adding the vanity URL feature would have been in the form of myWebsite/member-profile.php?member_id=123456
Everything works fine except for the fact that if the URL points to a directory such as myWebsite/someDirectory I get redirected to the error page specified in my .htaccess file.
I'm a PHP Programmer but I'm not too familiar with RewriteRules or their conditions. Below I've pasted my entire .htaccess file from my Linux server's root directory. Can someone please help me figure out what the problem is?
SuPHP_ConfigPath /home/helcupor/public_html
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
#for files, append .php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
#for vanity urls redirect to url2id.php
RewriteCond %{REQUEST_FILENAME} >""
RewriteRule ^([^\.]+)$ url2id.php?vanityName=$1 [L]
AuthUserFile "/home/helcupor/.htpasswds/public_html/passwd"
ErrorDocument 404 /routing.php
#AuthName "/admin/"