.htaccess をいじってからしばらく経ちましたが、これを正しく理解できないようです。example.com などのサイトがあり、example.com/* を example.com/collector.html にリダイレクトする必要があります。ただし、サブディレクトリ example.com/special の下の URLを除き、引き続き作業を行いたいと考えています。
例えば:
- example.com/page.html は example.com/collector.html にリダイレクトする必要があります
- example.com/foo/bar は example.com/collector.html にリダイレクトする必要があります
- example.com/special/page.html はリダイレクトしないでください
私は次のようなことを考えていたでしょう
RedirectMatch 302 ^/[^(special)]/.* /collector.html
RedirectMatch 302 ^/[^(collector.html)/]* /collector.html
トリックを行うでしょうが、私が望むようには機能しないようです。