I used to use a portal on my site but i recently removed it so i have been using the following htaccess file to direct all users to my forum. The problem with this is that i can no longer get to my phpmyadmin page which is
http://www.mysite.com/phpmyadmin/ as it always changes the url to
http://www.mysite.com/forum/phpmyadmin/
RewriteEngine On
RewriteBase /
RewriteRule (.*) http://www.mysite.com/forum/$1 [R,L]
What have i done wrong?