Ive seen a similar question on here about this problem, but as it didn't resolve my issue, I have to write another.
I've moved a client's site from my own testing server to their previously bought site hosters lcn.com. While the homepage http://mydomain.com loads absolutely fine, any sub-page (http://mydomain.com/page) gives me the "No input file selected" error.
It must be an htaccess/server set up issue, although lcn have told me mod rewrite is all on, and nothing should be restricted. If I visit the subpages the plain way, http://mydomain.com/index.php/page, they load fine.
So, here goes, here's my htaccess file. Any thought as to why I have problems?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>