我想用搜索查詢執行301重定向。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]