I want these URL redirects / forwards:
here.com/foo    ==> there.com/a/b
here.com/foobar ==> there.com/c/d
I have these two .htaccess RewriteRule lines:
RewriteRule ^foo$    http://there.com/a/b [R=301,L] 
RewriteRule ^foobar$ http://there.com/c/d [R=301,L]
But the result is:
here.com/foo    ==> there.com/a/b
here.com/foobar ==> there.com/a/b
foo is also matching foobar
How do I make it work?