![]() |
Mod rewrite username forwarder
I would like to have a hack that allows users to view other users profiles by typing http://www.mydomain.com/username which forwards to member.php?u=23 or whatever. ive been told you can do this with mod rewrite, any1 care to have a go
|
One way for a basic mod_rewrite of the members section: in your .htaccess, you need the following
Code:
RewriteEngine on This said, it is doable to have a cached htaccess that is updated via a daily cron job based on the userlist, but it would make for high server overhead having a N-line htaccess file where N in the number of members you have... |
Quote:
https://vborg.vbsupport.ru/memberlis...username=Natch which will give you names like Natch. If you want names exactly matching Natch, you'd just need to hack memberlist.php slightly: above Code:
if ($ausername) Code:
if ($myusername) Also: You've probably noticed that in the admin panel if you do a user search and there is only one result it goes right to that user. It shouldn't be too hard to get that to happen in memberlist.php too. Regards, Matt |
I had a chat with a mod_rewrite expert last night at my local PHP User Group meeting: suggestion from there was to write a small redirect script (uanmeparse.php) to parse the username to userid, then redirect to forumhome/member.php?u=$userid, and then mod_rewrite like so:
Code:
RewriteEngine on |
Quote:
|
Quote:
|
Seems sloppy to me Zachery: a 404 used for something other than an actually missing page is against the HTML spec, and some proxy servers will simply serve up an ISP specific custom 404 page, rather than follow the script's directive, on getting the 404 HTML header.
|
Quote:
Regards, Matt |
Not for long... ;)
|
|
Well then, the .htaccess would be
Code:
RewriteEngine on Code:
RewriteRule ^~([a-z0-9\ -=]*)$ /forums/member.php?username=$1 [L,NC] |
just a small question considering my usual username (#404)
does this mods also work with usernames beginning with an #? or is there maybe a possibility to use links like http://username.test.com |
I'm interested in this hack, which of those options would people recommend most?
|
With other characters, you will need to test adding those characters into the regular expression test (bolded)... I've added your # symbol as an example...
Code:
RewriteEngine on |
Only trouble would be the who's online location. Say you go to Vvew ~M1th profile, you'd possibly get Unknown Location /~M1th
|
Yeah: that could be resolved in the same way we resolved the issues of thread locations and mod_rewriting the forum/thread/post URL's (discussion on dani-web linked in my sig)...
|
All times are GMT. The time now is 06:31 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|