How can i access functions in my main controller? I installed codeigniter in a subfolder on godaddy webhosting. "testapps" is the name of the folder containing CI. My default controller is "main" and i have the following htaccess file inside testapps.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /testapps
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
Here is my config
$config['base_url'] = 'http://site.com/testapps/';
$config['index_page'] = "";
$config['uri_protocol'] = 'REQUEST_URI';
My routes
$route['default_controller'] = "main";
When i try "http://site.com/testapps/index.php/main/load", i get the following error:
No input file specified.
When i try: http://site.com/testapps/index.php, the index(default) function in the main controller file is called correctly
So how can i call the load function which is in the same controller file as index?
Thanks