将所有网站文件夹和文件重定向到新域的根目录

时间:2013-10-02 00:34:27

标签: .htaccess

我想将所有不再存在的文件重定向到新域的根目录。

一些例子:

  • Olddomain.com应该转到newdomain.com
  • Olddomain.com/folder到newdomain.com
  • Oldomain.com/anyfolder/anyfile.pdf到newdomain.com
  • Olddomain.com/evenafile_that_doesnt_exists to newdomain.com

我正在使用

redirect 301 / newdomain.com

但这需要文件存在于具有确切路径的新域中。

额外的挑战:

  • 将所有旧的html文件重定向到同一路径中的新php
  • 将具有完全相同路径的所有其他文件和目录重定向到newdomain.com,其中如果路径不正确,则会出现页面机器人发现错误。

1 个答案:

答案 0 :(得分:1)

尝试:

RedirectMatch 301 ^ http://newdomain.com/

这会将所有内容重定向到同一个地方。