Você pode criar um mapa dos URLs de e para no seu arquivo httpd.conf
, como assim;
<VirtualHost *:80>
ServerName dreamintech.net
ServerAlias www.dreamintech.net
....
# map relative URLs under dreamintech.net to the
# remote URL with a 302 redirect
Redirect permanent /2012/3/post-title-something-test http://nathancampos.me/post/1920418430/post-title-here
Redirect permanent /2012/3/post-title-something-2 http://nathancampos.me/post/1920418430/post-title-2
Redirect permanent /2012/3/post-title-something-3 http://nathancampos.me/post/1920418430/post-title-3
</VirtualHost>