First thing to consider is the phpBB distinction between post and topic urls :
viewtopic.php?
p=xx (post) vs viewtopic.php?
t=xx (topic)
Apparently, the Google Tap MOD did allow post urls to be indexed (in their url rewritten version), so you'll have to do some redirecting to take care about all these duplicates unless you did it using your robots.txt.
Then, the principle is pretty simple thanks to the
zero duplicate. All we need to do is to make sure that the old rewritten urls will still hit the proper phpBB script and the zero duplicate will do the rest :
- Code: Select all
postt17173.html => old rewriterule => viewtopic.php is called with t = 17173 => the zero duplicate detects the dupe => HTTP 301 redirection to the new url, can be pretty much what you want, default is topic17173.html => new rewriterule => viewtopic.php is called with t = 17173, header is sent, the page is displayed
All this occurs with a single redirect so there no better way to do it.
This means that we need to redirect all the rewritten urls, forum, topics and posts.
With our mods, you can personalize the static part in urls, this mean you could keep posttxx.html as the topic standard and save some redirection, but this as well could be a good occasion to start using the virtual folder trick to be able to use urls such as "forum-url/topicxx.html" which would allow you to add some selected keywords (the one you'd have chosen for each forum) in all topic urls.
Massive redirecitng usually causes no trouble SEO wise as long as they are implemented properly (eg all the sudden and working from the beginning), it's all up to you to decide about this.
In all cases, you'll need to at least redirect post urls, and most likely the forum ones, so before you switch, please post here both your new and old .htaccess and I'll tell you what to do to activate all the required redirections
++