所以,我需要一些非常简单的东西,但无论如何我似乎都能做对。我需要重定向
http://mydomain.com/help/4/something/else/
至
http://mydomain.com/help/index.php/4/something/else
只有当 URL 中有“/help/”时,这才应该有效。
我一直在尝试一整天,最后我想到的是
RewriteCond %{REQUEST_URI} ^/(help)/
RewriteRule . help/index.php [L]
但它不起作用:-/