I am trying to make it so that this url:
becomesCode:http://loclahost/gamer/index.php?id=1
What mod_rewrite code do i need?Code:http://localhost/gamer/1
Thanks for your time![]()
I am trying to make it so that this url:
becomesCode:http://loclahost/gamer/index.php?id=1
What mod_rewrite code do i need?Code:http://localhost/gamer/1
Thanks for your time![]()
Last edited by dkblackhawk; 01-17-2010 at 03:54 PM.
Code:RewriteEngine On RewriteRule ^([0-9]+)$ index.php?id=$1 RewriteBase /gamer/![]()
Bookmarks