検索クエリで 301 リダイレクトを行いたい。
例: abc.com は abc.org にリダイレクトする必要があり、誰かが abc.com/xyz.html と入力すると仮定した場合は、abc.org/xyz.html にもリダイレクトする必要があります。
以下は、現在の htaccess 部分です。
RewriteRule pages/(.*) single.php?page=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^rss.xml$ rss.php [L]
RewriteRule (.*)\.html song.php?q=$1 [L,QSA]