Reputation: 3
I need help with some rewrite rule
Pretty much all my pages look like this:
index.php?key=guild&id=939&view=board
index.php?key=player&id=300941&view=edit
index.php?key=mod&id=41&view=download
Would i be possible to use 1 rewrite rule? Since all my pages have same $_get's
/guild/939/board
/player/300941/edit
Upvotes: 0
Views: 61
Reputation: 70460
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/?([^/]+)/([^/]+)/([^/]+)$ index.php?key=$1&id=$2&view=$3 [L,QSA]
Now, to change all those links in your project is possibly quite a lot more work :)
Upvotes: 5