I'm just preparing to upgrade my old vVulletin 3.8 board with Zoints SEO addon to vBulletin 4.2. Here are he Zoints SEO rewrite rules: RewriteRule ^([a-z0-9_\-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ forumdisplay.php/$1 [QSA,L] RewriteRule ^([a-z0-9_\-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?\.html)$ showthread.php/$1 [QSA,L] Code (markup): Putting those to the .htaccess fle of vb4 won't redirect correctly. Some research and try and error led me to this rules: RewriteRule ^[a-z0-9_\-]*-f([0-9]+)(p[0-9]+|/index[0-9]*)?\.html$ forumdisplay.php?f=$1 [QSA,L,R=302] RewriteRule ^[a-z0-9_\-]*-(t|p)([0-9]+)(p[0-9]+|/index[0-9]*)?\.html$ showthread.php?$1=$2 [QSA,L,R=302] Code (markup): First rule for displaying sub-forums works, second one for displaying threads works as well, except for pagination. So the second page of a thread is still being redirected to the first page. Any help would be appreciated!