我正在 Tumblr 上建立我的新博客,我已经将所有旧的 WordPress 帖子迁移到新主页。问题是 Tumblr 的永久链接与 WordPress 的永久链接不同(帖子标题部分),所以我想知道如何手动重定向 URL,例如:
到:
有什么方法可以做到这一点而不必使用在新 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>