No input file specified and htaccess |
[eluser]Unknown[/eluser]
I faced the same problem andI found the solution in this link: Fixing No input file specified issue Basicly I put the .htaccess in the same directory as my CI project and the .htaccess should look like this: RewriteEngine on RewriteCond %{REQUEST_URI} ^/system.* RewriteRule ^(.*)$ index.php?/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ index.php?/$1 [L] In the config.php file (in my case ci/application/config/config.php - Depends of your directory organization) you should set: $config['base_url']='http://www.YOUR_PROJECT_NAME_GOES_HERE.COM/THE_DIRECTORY_OF_YOUR_CI_PROJECT_NAME'; $config['index_page'] = ''; and $config['uri_protocol'] = 'AUTO'; Good Luck for everyone! |
Messages In This Thread |
No input file specified and htaccess - by El Forum - 09-11-2007, 10:59 AM
No input file specified and htaccess - by El Forum - 09-11-2007, 11:16 AM
No input file specified and htaccess - by El Forum - 09-11-2007, 11:19 AM
No input file specified and htaccess - by El Forum - 09-11-2007, 12:10 PM
No input file specified and htaccess - by El Forum - 09-11-2007, 12:34 PM
No input file specified and htaccess - by El Forum - 09-11-2007, 01:19 PM
No input file specified and htaccess - by El Forum - 09-18-2007, 10:57 AM
No input file specified and htaccess - by El Forum - 09-18-2007, 01:32 PM
No input file specified and htaccess - by El Forum - 09-18-2007, 02:31 PM
No input file specified and htaccess - by El Forum - 09-18-2007, 03:19 PM
No input file specified and htaccess - by El Forum - 09-18-2007, 04:40 PM
No input file specified and htaccess - by El Forum - 09-18-2007, 04:48 PM
No input file specified and htaccess - by El Forum - 04-15-2010, 02:42 AM
No input file specified and htaccess - by El Forum - 03-20-2013, 08:17 AM
No input file specified and htaccess - by El Forum - 01-07-2014, 05:43 AM
No input file specified and htaccess - by El Forum - 03-06-2014, 08:48 AM
No input file specified and htaccess - by El Forum - 03-20-2014, 10:37 PM
No input file specified and htaccess - by El Forum - 03-21-2014, 01:52 AM
|