1

我有一个 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]

但这适用于第一个条件,但在后面它将我重定向到根页面。任何人都可以在此重定向中提供帮助。

提前致谢。

4

1 回答 1

2

尝试这样的事情:

RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index.php/?([^\ \?]*) [NC]
RewriteRule ^ %1/%2 [R=301,L]

那应该处理/index.php.

于 2013-01-18T08:53:09.223 回答