My current .htaccess file
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^falsebase\.net
RewriteRule (.*) http://falsebase.net/$1 [R=301,L]
I want to add on to this so I when a user enters "http://u.falsebase.net/USERNAME" into their address bar they get directed to "http://falsebase.net/profile.php?name=USERNAME".
I imagine this is pretty simple, I just have no experience with .htaccess, and after scanning through about 12 other threads that seemed similar to this, I did not get a consistent answer from any of them.