PDA

View Full Version : fake dirs


sabret00the
09-22-2006, 02:20 PM
how would i go about setting up fake directories?

i.e.
www.ebslive.com/journals/user.php?username=sabret00the become www.ebslive.com/journals/sabret00the

www.ebslive.com/journals/user.php?username=sabret00the&display=friends becomes www.ebslive.com/journals/sabret00the/friends

www.ebslive.com/journals/user.php?username=sabret00the&display=syndications becomes www.ebslive.com/journals/sabret00the/syndications

nico_swd
09-22-2006, 02:31 PM
With .htaccess.


RewriteEngine on
RewriteRule ^([A-Za-z0-9]+)(/)?$ user.php?username=$1
RewriteRule ^([A-Za-z0-9]+)/friends(/)?$ user.php?username=$1&display=friends
RewriteRule ^([A-Za-z0-9]+)/syndications(/)?$ user.php?username=$1&display=syndications


This should work.

sabret00the
09-22-2006, 02:36 PM
Thanks Nico, i really really really appreciate that.

nico_swd
09-22-2006, 02:43 PM
No problem. You might want to add an underscore to the pattern if these are allowed in usernames.


-_A-Za-z0-9


Otherwise if it would fail if someone had a username like nico_swd, lol.

SaN-DeeP
09-22-2006, 04:53 PM
how would you take care of special characters and/or other language chars via .hta ?

thanks.

nico_swd
09-22-2006, 04:59 PM
I don't think I understand what you're trying to do.

sabret00the
09-22-2006, 05:29 PM
Nico, one more question, say if i have
http://www.ebslive.com/journals/user.php?username=sabret00the&e=5329
http://www.ebslive.com/journals/user.php?username=sabret00the&e=5330
http://www.ebslive.com/journals/user.php?username=sabret00the&e=5331

and i want to change that into

http://www.ebslive.com/journals/sabret00the/e=5329
http://www.ebslive.com/journals/sabret00the/e=5330
http://www.ebslive.com/journals/sabret00the/e=5331
what would i do then?

RewriteRule ^([A-Za-z0-9]+) e=$2 (/)?$ user.php?username=$1&e=$2

nico_swd
09-22-2006, 07:02 PM
Give this a try.

RewriteRule ^([A-Za-z0-9]+)/e=([0-9]+)$ user.php?username=$1&e=$2


EDIT:

You could take out the e= as well. This should do it.

RewriteRule ^([A-Za-z0-9]+)/([0-9]+)$ user.php?username=$1&e=$2

Antivirus
09-23-2006, 02:55 AM
very interesting. I can imagine the value for this in increasing security. Thanks!

nico_swd
09-23-2006, 06:15 AM
Not only security. Google will love it too. :D

sabret00the
09-23-2006, 08:14 AM
thanks nico :)

nico_swd
09-23-2006, 09:17 AM
I've checked your site a bit, and there are some users with weird usernames that could cause errors. This here should work with most of them.

RewriteEngine on
RewriteRule ^(.*)/$ user.php?username=$1
RewriteRule ^(.*)/friends(/)?$ user.php?username=$1&display=friends
RewriteRule ^(.*)/syndications(/)?$ user.php?username=$1&display=syndications
RewriteRule ^(.*)/([0-9]+)$ user.php?username=$1&e=$2


It would be easier and safer if you could use the userids instead of the usernames. If a user has for example a * in his username it will cause an error, and I'm not sure if there's a way around that.

The code above also requires a slash at the end when calling /journals/sabret00the/. I couldn't get it to work without.

sabret00the
09-23-2006, 10:34 AM
I've checked your site a bit, and there are some users with weird usernames that could cause errors. This here should work with most of them.

RewriteEngine on
RewriteRule ^(.*)/$ user.php?username=$1
RewriteRule ^(.*)/friends(/)?$ user.php?username=$1&display=friends
RewriteRule ^(.*)/syndications(/)?$ user.php?username=$1&display=syndications
RewriteRule ^(.*)/([0-9]+)$ user.php?username=$1&e=$2


It would be easier and safer if you could use the userids instead of the usernames. If a user has for example a * in his username it will cause an error, and I'm not sure if there's a way around that.

The code above also requires a slash at the end when calling /journals/sabret00the/. I couldn't get it to work without.
what i'll do is, i'll get users to change their usernames, it seems the best bet. thanks for your help, i really appreciate that.

nico_swd
09-23-2006, 11:04 AM
What you can do is following to avoid new users with bad characters.

Go to.

Admincp -> vbulletin options -> User registration options -> Username Regular Expression

And enter this: ^[-_A-Za-z0-9]+$

This way users can't pick bad characters and you don't have to worry about it in the future.