I need an htaccess redirect

zastavra

Active member
Guys, I need an htaccess redirect to handle my old vB pagination URLs to the new xF ones.

Example:

domain.com/forum/t12345-2/

redirect to

domain.com/forum/t12345/page-2

Thanks!
 
Last edited:
That helped me a lot to create what I needed.

BTW, this is what I was looking for:

Code:
RewriteRule ^forum/t([\d]+)-([\d]+)/ http://domain.com/forum/t$1/page-$2 [R=301,L]

Thanks.
 
Top Bottom