Code:
<a style="text-decoration:none" href="arcade.php?categoryid=$id">
Becomes:
Code:
<a style="text-decoration:none" href="arcade-categoryid=$id.html">
Code:
RewriteRule ^arcade-categoryid=(.*).html arcade.php?categoryid=$1 [L]
Code:
<a href="arcade.php?barsize=1<if condition="$categoryid">
I am not actually too sure on that one, hmm, sorry.
Code:
<a href="member.php?$session[sessionurl]u=$game[highscorerid]" target="_blank">
Becomes:
Code:
<a href="member-$session[sessionurl]-u=$game[highscorerid].html" target="_blank">
Code:
RewriteRule ^member-(.*)-u=(.*).html member.php?$1u=$game$2 [L]
Code:
<a href="arcade.php?do=scores&gameid=$game[gameid]">
Becomes:
Code:
<a href="arcade-do=scores-gameid=$game[gameid].html">
Code:
RewriteRule ^arcade-do=(.*)-gameid=(.*).html arcade.php?do=$1&gameid=$2 [L]
Code:
<a href="arcade.php?do=play&gameid=$newgame[gameid]">
Becomes:
Code:
<a href="arcade-do=play-gameid=$newgame[gameid].html">
Code:
RewriteRule ^arcade-do=(.*)-gameid=(.*).html arcade.php?do=$1&gameid=$2 [L]
That's all I have time for now, I'll try to finish shortly