I want to change the url from:
http://sitename.com/?game=runescape
to
http://sitename.com/game/runescape
I use $_GET['game'] to request the slug and retrieve data from the database. Does anyone know if this is possible and how?
I want to change the url from:
http://sitename.com/?game=runescape
to
http://sitename.com/game/runescape
I use $_GET['game'] to request the slug and retrieve data from the database. Does anyone know if this is possible and how?
This rule should work for any game
:
RewriteEngine on
RewriteRule ^/game/(.+?)$ index.php?game=$1