咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
Apahce配置301重定向
例如,要把域名 test.com,重定向到 www.landui.com,则需要修改 Apache 中站点的配置文件,添加 301 重定向的配置。
ServerName test.com #绑定的域名test.com RedirectMatch permanent ^/(.*) http://www.landui.com/$1 #访问test.com,都跳转到www.landui.com
添加好 Apache 的配置后,重启 Apache 生效,然后访问 test.com,就会 301 跳转到 www.landui.com