0

我需要将在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 错误。

非常感谢您的建议,如何解决这个问题。

4

1 回答 1

0

您的规则顺序错误,即最通用的包罗万象的规则是您的第一条规则,并且优先于其余规则。

利用:

<VirtualHost *:80>
  ServerName blog.example.com

  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
  Redirect 301 / http://example.com/blog/

</VirtualHost>

确保在测试之前清除浏览器缓存。

于 2015-05-27T13:57:58.033 回答