This is my current .htaccess:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1 [QSA,L]
RewriteRule ^games/(.*)$ index.php?page=games&game=$1 [L,QSA]
I need for this to work:
index.php?page=music should be url.com/music
index.php?page=games should be url.com/games
index.php?page=games&game=example should be url.com/games/example
Please help me write my .htaccess for this