The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
Hi, i wondered if some one know how I using mod_rewrite could make "url.com/username" be the url to the user profile?
|
|
#2
|
||||
|
||||
|
you could do it with an .htaccess file, but not sure what the code is offhand
edit: something like this should work Code:
RewriteEngine On RewriteRule ^$ index.php RewriteRule (^[-_A-Za-z0-9\ ]*$) member.php?&username=$1 |
![]() |
|
|