So, I need something pretty simple, and yet I can seem to get it right anyhow. I need to redirect
http://mydomain.com/help/4/something/else/
to
http://mydomain.com/help/index.php/4/something/else
And this should work only if there is a "/help/" in the URL.
I've been trying it whole day, the last I came up to was
RewriteCond %{REQUEST_URI} ^/(help)/
RewriteRule . help/index.php [L]
but it's not working :-/