0

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?

Neil Yoga Crypto
  • 615
  • 5
  • 16

1 Answers1

2

This rule should work for any game:

RewriteEngine on
RewriteRule ^/game/(.+?)$ index.php?game=$1
Halcyon
  • 57,230
  • 10
  • 89
  • 128