Apache:使用不区分大小写的路径重定向?

Gar*_*ett 3 redirect case-insensitive apache-2.2

我有以下重定向:

RedirectPermanent /SCJ https://fin-iq.com
Run Code Online (Sandbox Code Playgroud)

但它不适用于/scj,/sCj等。有没有办法使这种情况不区分大小写?

我尝试添加 [NC,L] 但页面崩溃了。

谢谢!

Zor*_*che 6

这应该有效。

RedirectMatch permanent (?i)^/SCJ https://fin-iq.com
Run Code Online (Sandbox Code Playgroud)