Click to See Complete Forum and Search --> : Mod re-Write question?


AB83Rules
04-12-2009, 11:03 PM
Hey, ive been going thru tutorials, but cant seem to figure it out.

I want this URL, and others, like this, http://www.draftwatchers.com/prospects/profile.php?playerid=1

to be either, www.draftwatchers.com/prospects/1 or even www.draftwatchers.com/prospects/Joe-Smith

Something like that.

Scleppel
04-16-2009, 06:18 PM
For /prospects/1 to /prospects/profile.php?playerid=1, try the following in a .htaccess file in your document root
Options +FollowSymLinks -MultiViews

RewriteEngine On

RewriteRule ^prospects/([0-9]+)/?$ /prospects/profile.php?playerid=$1 [QSA,L]

/prospects/Joe-Smith is a whole lot more complicated.