我需要将在Ghost上运行的子域上的博客及其所有帖子重定向到新位置。当前位于http://blog.example.com
并需要重定向到http://example.com/blog/
对于最初的 Ghost 博客,Apache 被用作代理,因为 Ghost 在 node.js 上运行。因此,我不能简单地.htaccess
在 Ghost 安装的根文件夹中使用 a。
我使用了301 重定向生成器来设置所有需要的重定向,然后将代码直接放在 中etc/apache2/sites-enabled/000-default.conf
,如下所示:
<VirtualHost *:80>
ServerName blog.example.com
Redirect 301 / http://example.com/blog/
Redirect 301 /post-title-1/ http://example.com/blog/post-title-1.html
Redirect 301 /post-title-2/ http://example.com/blog/post-title-2.html
Redirect 301 /post-title-3/ http://example.com/blog/post-title-3.html
</VirtualHost>
然后我重新启动了服务器。
http://blog.example.com
现在正确重定向到http://example.com/blog/
,但个别帖子指向错误的位置。而不是应用新位置,例如post-title-1.html
,它们被指向http://example.com/blog/post-title-1/
,这在逻辑上会引发 404 错误。
非常感谢您的建议,如何解决这个问题。