i have turned off index.php in my codeigniter by .htaccess and also i left blank the index file in config.php
this is .htaccess code
RewriteEngine on
RewriteCond $1 !^(index\.php|images|captcha|css|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
i have a link to my controller function as ‘cuser/authenticate’ so the url looks like
mydoamin.com/cuser/authenticate
but it shows an error telling path not found
when i edit the above url to
mydomain.com/index.php/cuser/authenticate
it displays output
how can i tackle this problem?
These settings worked for me