domain.com/index/ to domain.com/index.php
domain.com/index/hello to domain.com/index.php/hello
The site is use path_info,and the default rule not works:
RewriteRule ^([^/]+)/(.*)$ $1.php/$2 [L]
I change to: RewriteRule ^([^/.]+)((/[^/]+)*)/?$ $1.php$2 [L]
That was strange
domain.com/index/ to domain.com/index.php works fine
domain.com/index/hello to domain.com/index.php/hello not work
and it says No input file specified.
Php is run in fast cgi mode in apache