我有一个 url 重定向的条件,例如,
www.domain.com/something/anotherthing/index.php
我需要上面的网址重定向到
www.domain.com/something/anotherthing/
如果我去
www.domain.com/index.php/something/anotherthing
我想重定向到
www.domain.com/something/anotherthing
我有一个重定向 htaccess 规则
RewriteCond %{THE_REQUEST} ^[AZ]{3,}\s(.*)/index.php$1 [NC]
重写规则 ^ /%1$1 [R=301,L]
但这适用于第一个条件,但在后面它将我重定向到根页面。任何人都可以在此重定向中提供帮助。
提前致谢。