Log in

View Full Version : Resolved Mod_Rewrite help



dkblackhawk
01-14-2010, 11:15 PM
I am trying to make it so that this url:

http://loclahost/gamer/index.php?id=1
becomes

http://localhost/gamer/1

What mod_rewrite code do i need?

Thanks for your time :)

dkblackhawk
01-14-2010, 11:53 PM
RewriteEngine On
RewriteRule ^([0-9]+)$ index.php?id=$1
RewriteBase /gamer/ :D