Quote:
Originally Posted by eva2000
Anyone got this working with vB3 RC2 ?
my forum urls are
forumdomain.com/f123/s
forumdomain/t234/s.html
my old rewrite rules for vB 2.3.x were
Code:
RewriteEngine on
RewriteRule ^/f([0-9]+)/?$ /forumdisplay.php?forumid=$1 [L]
RewriteRule ^/f([0-9]+)/s?$ /forumdisplay.php?forumid=$1 [L]
RewriteRule ^/t([0-9]+)\.html$ /showthread.php?threadid=$1 [L]
RewriteRule ^/t([0-9]+)/s([^/]?)\.html$ /showthread.php?threadid=$1&s=$2 [L]
RewriteRule ^/s([^/\?]0-9)+/$ /index.php?s=$1 [L]
any ideas ?
|
Bear in mind, the forumid= and threadid= url still work despite vB3 are using the short version as "f=" and "t=". So theoretically you don't even need to change your rules.
You might like to enable the rewrite log to debug the problem. I have an example at:
http://www.vbulletin.com/forum/showp...7&postcount=89
My current rulesets for the legacy links are posted here:
https://vborg.vbsupport.ru/showpost....&postcount=298
They have worked for me since beta 7, then Gamma, now RC2.
Also, if you disable the error redirects, I might be able to work out the problem if you provide a sample link.
For other people who is looking at doing this hack, I can't think of a reason to implement this hack in vB3. Just kill the session id in seesions.php, the bots will index the pages. Make sure to include a robots.txt file to exclude member.php etc!!!