I have an .htaccess
file set up like so:
RewriteEngine on
RewriteRule ^home/ /member.php [L]
So when users type http://domainname.com/home/
it goes to the member page,
but when they type http://domainname.com/home
I get a 404
error.
What am I doing wrong?