我正在尝试重定向所有内容,例如:
mycomain.com/ST/My_Dir/anything
whereST
等于一个州的缩写,anything
等于任何东西。
我在我的.htaccess
文件中尝试了以下代码,但它不起作用..
ErrorDocument 404 /index.php
RedirectMatch 404 ^[a-zA-Z]{2}/My_Dir/.*$
另外,有没有办法让我My_Dir
不区分大小写?我知道如何在 PHP 中执行此操作,但不确定这里是否相同。