将传入的搜索请求重定向到其他域(也使用bolt.cm)

时间:2015-03-11 09:13:14

标签: php redirect bolt-cms

我在Bolt.cm上运行了两个网站

旧网站称为blog.domain.nl,另一个只是domain.nl

现在我在domain.nl上发了一些类似的帖子(注意这是一个不同的bolt.cm安装)

我想将blog.domain.nl上的直接点击重定向到domain.nl 我想取消发布blog.domain.nl

上的帖子

如何为此设置正确的直接?

因此,如果谷歌拥有blog.domain.nl/a/blog的搜索索引。我想将其重定向到domain.nl/a/blog

1 个答案:

答案 0 :(得分:0)

Bolt有一个重定向扩展名,可在此处找到:http://extensions.bolt.cm/view/d325689f-ace6-4700-bffd-1197d9c0cec8

此处描述了您需要的部分配置: https://github.com/foundrycode/boltredirector#using-wildcards

如果您的需求只是您给出的一个示例那么简单,那么这是不必要的,您可以使用mod_rewrite重定向(假设您使用的是Apache),这看起来像这样......

RewriteRule ^blog/$ http://domain.nl/$1 [L,NC,R=301]