XenForo
Administrative
- Thread starter
- Admin
- #1
good morning
I'm trying to direct links from vBulletin3.7 to Xenforo using htaccess
Old links look like this
I want it to be like this
I wrote this code in htaccess file
Code:
Read more
ادامه مطلب...
I'm trying to direct links from vBulletin3.7 to Xenforo using htaccess
Old links look like this
localhost/vb/t75853.html
I want it to be like this
localhost/xf/threads/75853
I wrote this code in htaccess file
Code:
Code:
RewriteRule ^t(.*)-new-post.html$ threads/$1 [L,R=301]
RewriteRule ^t(.*)-([0-9]+).html$ threads/$1/#post-$2 [L,R=301]
RewriteRule ^t(.*).html$ threads/$1 [L,R=301]
RewriteRule ^f([0-9]+).*$ forums/$1 [L,R=301]
RewriteRule ^u(.*).*$...
Read more
ادامه مطلب...