将多个域名301重定向至一个域名
添加访问域名的DNS记录,使之能解析至同一服务器;
修改httpd的配置,允许网站目录下的.htaccess配置覆盖httpd的配置;
编辑.htaccess,配置重定向域名。
Example:使www.oimec.com.cn、www.oimec.cn、www.jicheng.cn 三个域名301重定向至www.jicheng.net.cn
修改DNS,添加www.oimec.com.cn、www.oimec.cn、www.jicheng.cn域名的CNAME记录至www.jicheng.net.cn。
修改httpd的配置文件:
<VirtualHost *:80> ServerAdmin admin@abc.com ServerName www.jicheng.net.cn ServerAlias www.jicheng.cn www.oimec.com.cn www.oimec.cn DocumentRoot /data/htdocs/jicheng <Directory "/data/htdocs/jicheng/"> Options FollowSymLinks AllowOverride All #启用网站目录下的.htaccess,使之生效 Require all granted </Directory> </VirtualHost>
在网站目录下添加.htaccess文件,内容如下:
RewriteEngine On # www.oimec.com.cn www.oimec.cn www.jicheng.cn redirect to www.jicheng.net.cn RewriteBase /data/htdocs/jicheng/ RewriteCond %{HTTP_HOST} ^www.oimec.com.cn [OR] RewriteCond %{HTTP_HOST} ^www.oimec.cn [OR] RewriteCond %{HTTP_HOST} ^www.jicheng.cn [NC] RewriteRule ^(.*)$ http://www.jicheng.net.cn/$1 [L,R=301]
验证:
本文出自 “银凯的博客” 博客,请务必保留此出处http://yinkai.blog.51cto.com/3813923/1912480
原文地址:http://yinkai.blog.51cto.com/3813923/1912480