我有像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} ^ [A-Z] {3,} \ s(。*)/ index.php $ 1 [NC]
RewriteRule ^ /%1 $ 1 [R = 301,L]
但这适用于第一个条件,但在后来它将我重定向到根页面。任何人都可以帮助重定向。
先谢谢。
答案 0 :(得分:2)
尝试这样的事情:
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index.php/?([^\ \?]*) [NC]
RewriteRule ^ %1/%2 [R=301,L]
应处理/index.php
。