これらの URL リダイレクト/転送が必要です:
here.com/foo ==> there.com/a/b
here.com/foobar ==> there.com/c/d
次の 2 つの .htaccess RewriteRule 行があります。
RewriteRule ^foo$ http://there.com/a/b [R=301,L]
RewriteRule ^foobar$ http://there.com/c/d [R=301,L]
しかし、結果は次のとおりです。
here.com/foo ==> there.com/a/b
here.com/foobar ==> there.com/a/b
foo
も一致foobar
しています。どうすれば機能しますか?