<? Ashley ?> originally posted:
This should work:
Code:
RewriteRule /users/(abcdefghijklmnopqrstuvwxyz[0-9]+)
/profiles.php?user=$1
Hope that helps.....I know the mod_rewrite syntax can be confusing at first...
Just remember to READ and try to understand it.....rarther than copying/pasting it into your .htaccess and not learning anything! :P
Ashley
Your kidding right? Why write the whole alphabet out, just do "a-z"
Code:
RewriteEngine on
RewriteRule ^users/([a-z0-9]+) /profiles.php?user=$1 [QSA,L]
I'm not 100% sure that will work. I haven't messed with mod_rewrite in quite awhile.