Alright, never mind that...my FTP client doesn't show .htaccess files, but when I log into PuTTY and list the directory with 'ls -al' it shows it.
So my .htaccess file is up, and it contains the following code:
RewriteEngine on
RewriteBase /
RewriteRule ^([A-Za-z_0-9\-]+)/?$ user_home.php?user=$1
But, it still gives me a 404 error if I visit www.website.com/username/ but it works if I visit www.website.com/username
What could be wrong with the .htaccess?
Thanks in advance!
-influx