With codeigniter, I have a controller as in the following:
if You Want to call controller function like this /CodeIgniter/myController/myFn
then,
You have to remove index.php file using .htaccess file. First You change config.php file like this.
// Remove index.php
$config['index_page'] = ""
then, create .htaccess file and copy this code to that file.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Then, put this .htaccess file inside codeignator project folder.
To Reference see this link:- enter link description here