Amin Sabet
Well-known member
I am doing my first vB4 to XF import. Quite exhilirating!
These are my current .htaccess contents which contain the rewrites I put in place after uninstalling vBSEO last year:
Can someone please tell me how to change these as needed to redirect to my new Xenforo URLs?
These are my current .htaccess contents which contain the rewrites I put in place after uninstalling vBSEO last year:
Code:
## Forward non-www to www
RewriteCond %{HTTP_HOST} ^talkemount.com
RewriteRule (.*) http://www.talkemount.com/$1 [R=301,L]
## Forward vBSEO to non-vBSEO URLs after uninstalling vBSEO
RewriteRule [^/]+/[^/]+-([0-9]+)/ http://www.talkemount.com/showthread.php?t=$1 [L,R=301]
RewriteRule ^f([0-9]+)/$ http://www.talkemount.com/forumdisplay.php?f=$1 [L,R=301]
RewriteRule ^members/(.+)/ http://www.talkemount.com/member.php?username=$1 [L,R=301]
Can someone please tell me how to change these as needed to redirect to my new Xenforo URLs?