Bonsai Coder
Active member
Fresh install of xenForo and an import of data from vBulletin 4.x into a virgin xenForo database using all the old vBulletin thread ID's.
Redirects (thread links) in old content was taking me to the old vBulletin install.
So I added this code to .htaccess in the root:
It fixed the problem for desktop access. But I am still having the problem in Android and tablet. Any thoughts?
Redirects (thread links) in old content was taking me to the old vBulletin install.
So I added this code to .htaccess in the root:
Code:
RewriteEngine On
RewriteRule ^[^/]+/([0-9]+)-[^\.]+\.html$ /index.php?threads/$1/ [R=301,L]
It fixed the problem for desktop access. But I am still having the problem in Android and tablet. Any thoughts?