vBSEO member profile redirect to Xenforo profile

TheBigK

Well-known member
I just found out that the direct links to our member profiles are returning 404. These are the profiles which were created during our vB+vBSEO days. The URL structure is -

www. crazyengineers . com / forum / members / civilprincess . html

How do I redirect the URL to the correct member profile? -

www. crazyengineers. com / community / members / civilprincess.47156 / ?
 
Hello, I need a new 301 redirect.

domain.com/xxx-t12345.html
domain.com/xxx-t12346.html

How can I redirect to the correct topic? (htaccess)
domain.com/threads/xxx.ID/
 
Hello, I need a new 301 redirect.

domain.com/xxx-t12345.html
domain.com/xxx-t12346.html

How can I redirect to the correct topic? (htaccess)
domain.com/threads/xxx.ID/

Add these rules to the top of the .htaccess file in the web root:

Code:
RewriteEngine On

RewriteRule ^.+-t([0-9]+)\.html$ /threads/$1/ [R=301,L]
 
Top Bottom