私は現在、コンテンツを管理するために複数の WordPress がインストールされている、最近取得したサイトの投稿を統合しています。1 つはpublic_html
フォルダーに、もう 1 つはサブディレクトリに、次のようにします。
1. http://domain.com/
2. http://domain.com/another-install/
すべてのコンテンツを/another-install/
メイン セットアップに移動し、次の/another-install/
ように 301 リダイレクトを使用してすべての古いリンクから削除します。
RedirectMatch 301 ^/another-install/(.*) http://domain.com/$1
その結果、すべての記事が次のようにリダイレクトされます。
http://domain.com/another-install/article-name/
TO
http://domain.com/article-name/
問題は、ページとして表示できるようにしたいということです/another-install/
。現在のリダイレクトでhttp://domain.com/another-install/
は、 に移動しhttp://domain.com/
ます。例外を追加する方法、または現在のルールを書き直して/another-install/
表示できるようにする方法はありますか?