実現したいこと

階層の異なる301リダイレクトを設定したいのですが、うまくいきません。よろしくお願いします。

/aaa/ --> http://www.example.com/aaa2/
/aaa/bbb/  --> http://www.example.com/aaa2/

環境

エックスサーバー×WordPress

試したこと

以下のコードをpublic_html直下の.htaccessに記述。階層が異なる301リダイレクトがうまくいっていません。
試したコード1

Redirect permanent /aaa/ http://www.example.com/aaa2/
Redirect permanent /aaa/bbb/ http://www.example.com/aaa2/

試したコード2

RedirectMatch 301 /aaa/(.*) http://www.example.com/aaa2/
RedirectMatch 301 /aaa/bbb/(.*) http://www.example.com/aaa2/

動作確認

/aaa/ --> http://www.example.com/aaa2/
/aaa/bbb/  --> http://www.example.com/aaa2/bbb/