ドメイン移行(変更)

HTTP 301 permanent redirectsで新しいサーバへ移動(mod_rewrite)
RewriteEngine on
RewriteRule ^/(.+) http://newserver/$1 [R=301,L]
HTTP 301 permanent redirectsで新しいサーバへ移動(mod_alias)
Redirect permanent / http://newserver/
サーバが変わるだけならmod_aliasだけで十分??
http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html
http://httpd.apache.org/docs-2.0/mod/mod_alias.html
http://japache.infoscience.co.jp/rewriteguide/