In my site users profiles have urls mysite.com/user/username. What I actually want to do that urls should be mysite.com/username. And I have done it adding these lines of code to htaccess file
RewriteRule ^([a-zA-Z0-9_-]+)$ user.php?uname=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ user.php?uname=$1
now i can reach users from mysite.com/username. but error is, now 404 document is not working. if i type url that does not exist like myste.com/dasdfsf, it does not get 404 document because it is looking on all numbers and letters(to find a username) and gives me a blank page which i have created for invalid usernames. I want it to show a 404 page if that user does not exist.