现象
需要将不同规则的域名统一跳转成规则域名;例如:
将test.com、www.test.com、test.gov.cn,统一跳转至:www.test.gov.cn
原因
项目需求
解决方法
需要修改apache配置文件httpd.conf,在虚拟主机配置中添加以下内容:
rewritecond %{http_host} ^test.com [nc]
rewriterule ^(.*)$ http://www.test.gov.cn [r=301,nc]
rewritecond %{http_host} ^test.gov.cn [nc]
rewriterule ^(.*)$ http://www.test.gov.cn [r=301,nc]
rewritecond %{http_host} ^www.test.com [nc]
rewriterule ^(.*)$ http://www.test.gov.cn [r=301,nc]
如下图:
