I want rando.com/game/basic/1
to point towards rando.com/game.php?type=basic&id=1
.
What I have so far:
#Fix Rewrite
Options -Multiviews
# Mod Rewrite
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^game/([^/]+)/([^\.]+)\$ /game.php?type=$1&id=$2
This isn't working. I get a 404 error.
Any help is appreciated! Thanks!