View RSS Feed

CRR

Custom Rewrite Rules

  1. vB Calendar CRR

    by , 07-21-2010 at 06:50 AM
    Quote Originally Posted by KURTZ View Post
    Code:
    // Calendar
    'calendar\.php$' => 'calendar/'
    '^calendar\.php\?c=1$' => 'calendar/'
    '^calendar\.php\?(c=1&)?do=(display.+?)(&year=)?$' => 'calendar/$2/[NF]'
    'calendar\.php\?(c=1&)?nojs=1' => 'calendar/nojs/[NF]'
    'calendar\.php\?(c=1&)?do=(display.+?)&nojs=1' => 'calendar/$2/nojs/[NF]'
    'calendar\.php\?(c=1&)?week=(\d+)&nojs=1' => 'calendar/week-$2/nojs/[NF]'
    'calendar\.php\?(c=1&)?month=(\d+)&year=(\d+)&nojs=1'
    ...
    Categories
    SEO Tips , CRR
  2. vBsoccer CRR

    by , 06-30-2010 at 04:46 PM
    Quote Originally Posted by KURTZ View Post
    i found this (after request ): what do you think about?

    vBulletin.org Forum - View Single Post - Soccer Betting Game ("Fussball-Tippspiele")

    Code:
    //Vbsoccer
    //========================================================
    '^vbsoccer\.php$' => 'soccer/'
    '^vbsoccer\.php\?do=(\w+)$' => 'soccer/$1/'
    '^vbsoccer\.php\?do=(\w+)&l=(\d+)$' => 'soccer/$1/$2/'
    '^vbsoccer\.php\?do=(\w+)&l=(\d+)&m=(\d+)$' => 'soccer/$1/$2/$3'
    ...
    Categories
    SEO Tips , CRR
  3. vBexperience CRR

    by , 06-30-2010 at 04:42 PM
    Quote Originally Posted by Ceri May View Post

    PHP Code:
    'xperience\.php\?go=(\w+)$' => 'experience/$1/' 
    Ceri
    Categories
    SEO Tips , CRR
  4. ibproarcade CRR

    by , 05-26-2010 at 06:58 AM
    PHP Code:
    // ibProArcade
    'arcade\.php$' => 'arcade.html'
    'arcade\.php\?&$' 
    => 'arcade.html'
    'arcade\.php\?&act=Arcade$' 
    => 'arcade.html'
    'arcade\.php\?do=play&gameid=(\d+)$' 
    => 'arcade/game/$1.html'
    'arcade\.php\?&act=Arcade&do=play&gameid=(\d+)$' 
    => 'arcade/game/$1.html'
    'arcade\.php\?act=Arcade&do=play&gameid=(\d+)$' 
    => 'arcade/game/$1.html'
    'arcade\.php\?&do=play&gameid=(\d+)$' 
    => 'arcade/game/$1.html' 
    ...
    Tags: ibproarcade
    Categories
    SEO Tips , CRR