例如,要把域名 test.com,重定向到 www.test.com,則需要修改 Apache 中站點的配置文件,添加 301 重定向的配置。
最主要就是以下配置:
1 ServerName test.com #綁定的域名test.com 2 RedirectMatch permanent ^/(.*) http://www.test.com/$1 #訪問test.com,都跳轉到www.test.com
添加好 Apache 的配置后,重啟 Apache 生效,然后訪問 test.com,就會 301 跳轉到 www.test.com :