RedirectMatch 301 .* http://example.com/index.html
これがどこにアクセスしてもここに飛ぶ 全部トップページへ飛ばす。
301が検索エンジンにも引越報告
以下例 その他
サーバー移転などサイト全体のリダイレクト
現在のサーバーURL(転送元) http://www.example.jp/
新しいサーバーURL(転送先) http://example.com/
Redirect permanent / http://example.com/
ディレクトリ単位のリダイレクト(転送)
現在のサーバーURL(転送元) http://www.example.jp/shop/
新しいサーバーURL(転送先) http://example.com/japan/shopping/
Redirect permanent /shop/ http://example.com/japan/shopping/
特定ファイル(拡張子)のみリダイレクト(転送)
現在のサーバーURL(転送元) http://www.example.jp/
新しいサーバーURL(転送先) http://example.com/
RedirectMatch 301 (.*)\.jpg$ http://example.com$1.jpg
RedirectMatch 301 (.*)\.gif$ http://example.com$1.gif