我想对搜索查询进行 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]