XF 1.1 Redirect from c logic seo urls (vb 3.8)

It should work with these redirect scripts:

http://xenforo.com/community/threads/redirection-scripts-for-vbulletin-3-x.5030/

You just need to modify the rewrite rules in your .htaccess file. These rewrites should work in conjunction with the above redirect scripts:

Code:
RewriteEngine on
RewriteRule public_forum/([a-zA-Z0-9_\-]+)-f([0-9]+)\.html forumdisplay.php?f=$2 [R,L]
RewriteRule public_forum/([a-zA-Z0-9_\-]+)-t([0-9]+)\.html showthread.php?t=$2 [R,L]

I can set this up for you if you have trouble. Redirects can be a bit of a pain.
 
Top Bottom