XF 1.2 URL routing help

I expect a lot of people do. I'm slightly distracted, but I don't want to write RegEx without my regexpal.com up to see how it'll interact.
 
Old URL:

http://www.controlbooth.com/wiki/Safety

Current URL

http://www.controlbooth.com/wiki/?title=Safety

Google is screaming bloody murder that the old URL's aren't working. The question I have is, would it be better to use route filters to point google in the right direction, or to use mod rewrite to make the new URL's look like the old ones?

Put this at the top of the .htaccess file in your web root:

Code:
RewriteEngine On

RewriteRule ^wiki/(.+)$ /wiki/?title=$1 [R=301,L]

That should do it.
 
Top Bottom