Thanks Richie,
That helps a little bit, but I need to actually pass a variable from the .htaccess file to my php script, I'm having a bit of trouble because the usernames are not static, they always change.
Does anyone know how to redirect from a folder (/name) to my script /script.php?u=name, where the "name" is dynamic?
I've gotten about this far with my .htaccess file, though, I doubt it will work because I'm not familiar (or in other words...knows nothing 😉 with regex and all that fun stuff (I've been doing tons of research -http://httpd.apache.org/docs/mod/mod_rewrite.html):
RewriteEngine on
RewriteRule /([uge])/([/]+)$ /page.php?u=$1 [R]
That is pretty much copied and pasted from the above apache doc, and it's not working on the server I'm testing it on (unforunatly, at the moment, my other server is down so I can't test it there, and .htaccess files don't seem to wanna run on XP).
Any ideas?