zastavra Active member Dec 22, 2013 #1 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: Dec 22, 2013
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!
Mike XenForo developer Staff member Dec 22, 2013 #3 Assuming the URLs are from vBSEO, this is generally the easiest tool to use: http://tools.geekpoint.net/xfseo/ Upvote 0 Downvote
Assuming the URLs are from vBSEO, this is generally the easiest tool to use: http://tools.geekpoint.net/xfseo/
zastavra Active member Dec 22, 2013 #4 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. Upvote 0 Downvote
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.