When using a redirection with mod_rewrite that uses PATH_INFO with PHP as FasCGI on Apache 2 :
No input file specified
Solution : Replace this :
RewriteRule ^(.*)$ index.php/$1 [L]
by :
RewriteRule ^(.*)$ index.php?/$1 [L]
and add a RewriteBase
(adapt for your own rules)