Forum Moderators: Robert Charlton & goodroi
how do I create redirects for so many URLs, is there a script or do I need to do them manually?If your software doesn't have a built-in tool, and there's absolutely no relationship between old URL and new URL, the last-resort approach is something like
RewriteRule ^forums/.+ /fixup.php [L]placed among your other redirects. The file "fixup.php" then performs any necessary lookups and finally issues the 301 redirect. Details depend on your old and new URL structure; this is simply the general layout.