狀態碼:
*301: 永久重定向,域名跳轉必定要用301,
對搜索引擎友好的。
302:臨時重定向
在虛擬主機配置文件/usr/local/apache2/conf/extra/httpd-vhosts
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.test.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.aaa.com$
RewriteRule ^/(.*)$ http://www.dd.com/$1 [R=301,L]
</IfModule>
重啓服務
/usr/local/apache2/bin/apachectl restartapache