Hello folks at x10 Hosting. I'm a new guy here and I am in the middle of setting up a small personal site for myself. I'm using an htaccess file but it causes me to get a "No input file specified" error -
As you can see if the request isn't a file or dir, it redirects to index.php and puts the request after the end of index.php, however when I attempt to use it it gives me the "No input file specified". I've done some research and figured out that it is probably because PHP is being run as a CGI here at x10. Is there something I can do to let this htaccess file work?
Edit - doing a search on these forums isn't helping me either - although I am seeing that some people are suggesting an upgrade to PHP Level 2 (Intermediate) - does anyone think that is the problem here? If so I can go request the upgrade now...
Code:
# turn on rewriting
RewriteEngine On
# for all files not found in the file system,
# reroute to index.php bootstrap script
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1
Edit - doing a search on these forums isn't helping me either - although I am seeing that some people are suggesting an upgrade to PHP Level 2 (Intermediate) - does anyone think that is the problem here? If so I can go request the upgrade now...
Last edited: