This is how I am doing this on my site where users can register, it's in php but can be modified to get what you want.
RewriteEngine On
# Full path
RewriteBase /
# Rewrite all php files
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
# Rewrite the user profile pages
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^user/([a-zA-Z0-9_-]+)$ profile.php?user=$1
RewriteRule ^user/([a-zA-Z0-9_-]+)/$ profile.php?user=$1
The first RewriteBase is the root directory of your site. The second Rewrite set under "# Rewrite all php files" will remove all .php file extensions from the files.
The third Rewrite set is what you are interested in. Profile.php is the users profile while ?user=$1 is the registered username. When the URL www.domain.com/user/userName/ is called it will actually get the data from the page profile.php?user=userName.
You will have to modify this a little bit to work how you want it, seeing as how mine is in php, but there are tutorials all over google on how to do this.