However, there seems to be a direct mapping from the old URLs to the new URLs.
Eg: http://wbb.multiwii.com/viewtopic.php?f=8&t=471 became http://www.multiwii.com/forum/viewtopic.php?f=8&t=471
That said, is pretty straight forward to write a URL Rewrite rule for Apache's ModRewrite which would convert old URLs to the new path.
This can be accomplishied by the following rules, to be inserted in the .htaccess file in the web root for the domain wbb.multiwii.com
Code: Select all
RewriteEngine on
RewriteRule ^(.*)$ http://www.multiwii.com/forum/$1 [R=301,L]
This way, any request to the old URLs will be forwarded to the new address without any broken link.
Hope this helps,
Fabio Varesano