我想将所有网站(包括不再存在的文件)重定向到新域的根目录。
一些例子:
- Olddomain.com 应该转到 newdomain.com
- Olddomain.com/文件夹到 newdomain.com
- Oldomain.com/anyfolder/anyfile.pdf 到 newdomain.com
- Olddomain.com/evenafile_that_doesnt_exists 到 newdomain.com
我正在使用
redirect 301 / newdomain.com
但这将要求该文件存在于具有确切路径的新域中。
额外的挑战:
- 将所有旧 html 文件重定向到同一路径中的新 php
- 将具有完全相同路径的所有其他文件和目录重定向到 newdomain.com,如果路径不正确,则会出现 page bot found 错误。