I just upgraded my PHP version to PHP 5.6.x running Fastcgi. I got a problem with a web application after te upgrade. When I remove the one RewriteRule the web application gives me the error: - No input file specified.
RewriteEngine On
RewriteBase /m/
RewriteCond $1 ^(index.php|media/images|media/js|media/css)
RewriteRule ^(application|modules|system) - [F,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
RewriteRule ^$ index.php/$1 [PT,L]
RewriteRule ^(media/.*.(gif|jpe?g|png))$ application/views/$0 [PT,L]