如何使用 Apache 将特定子域的所有页面重定向到另一个子域?

如何使用 Apache 将特定子域的所有页面重定向到另一个子域?

我想将所有对绝对路径 ( source.toto.org) 的引用重定向到另一个绝对路径 ( git.toto.org)。此链接位于许多页面中,我不想更改页面内容。我尝试修改我的网站.htaccess文件,但我认为我的语法没有错误:

Redirect source.toto.org http://git.toto.org

任何帮助将不胜感激。

答案1

我认为语法应该是:

RewriteEngine on
Redirect / http://git.toto.org

相关内容