vRewrite - v3arcade Rewrite
Just something I just whipped up.
Styles & Templates->v3 arcade->arcade_game_bit
Find:
Code:
<div style="padding-bottom: 4px"><a href="arcade.php?do=play&gameid=$game[gameid]"><strong>$game[title]</strong></a></div>
Replace with:
Code:
<div style="padding-bottom: 4px"><a href="arcade/games/$game[gameid].html"><strong>$game[title]</strong></a></div>
Find:
Code:
<a href="arcade.php?do=play&gameid=$game[gameid]">$vbphrase[play_now]</a> </td>
Replace with:
Code:
<a href="arcade/games/$game[gameid].html">$vbphrase[play_now]</a>
[code]
Open up v3 arcade->arcade_headinclude at to the very end:
Code:
<base href="$vboptions[bburl]/" />
Add this to your .htaccess with the other RewriteRules:
Code:
RewriteRule ^arcade/games/(.*) arcade.php?do=play&gameid=$1 [L]
I may add other rules if I get unlazy in the future