首先apache开启mod_write模块
在网站的.htaccess文件中加入如下内容
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
#RewriteBase /
RewriteCond %{HTTP_HOST} ^
www.phpvi.cn [NC]
RewriteRule ^(.*)$
http://www.phpvi.com/$1 [L,R=301]
RewriteCond %{HTTP_HOST} ^phpvi.com [NC]
RewriteRule ^(.*)$
http://www.phpvi.com/$1 [L,R=301]
</IfModule>