Apahce 如何配置 301 重定向

2018-06-11 08:21:19 6958

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

image.png

添加好 Apache 的配置后,重启 Apache 生效,然后访问 test.com,就会 301 跳转到 www.landui.com

提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: