如何手动将 URL 重定向到新博客

如何手动将 URL 重定向到新博客

我正在 Tumblr 上建立我的新博客,我已经将所有旧的 WordPress 帖子迁移到新主页。问题是 Tumblr 的永久链接与 WordPress 的永久链接不同(帖子标题部分),所以我想知道如何手动重定向 URL,例如:

http://dreamintech.net/2012/3/post-title-something-test

到:

http://nathancampos.me/post/1920418430/post-title-here

有什么方法可以做到这一点而不必使用在新 URL 上regex插入post-title部分,因为我想手动完成这一切。

附言:我不在乎需要花多少时间

答案1

httpd.conf您可以像这样在文件中制作来自和到 URL 的映射;

 <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>

相关内容