I have this link
localhost/MySite/queues/index.php
index.php has been removed using .htaccess and I got URL as follows.
localhost/MySite/queues
Now the problem is, when I use segment in my index function like this:
queues.php --> controller
function index($sgmnt = 'test'){
$this->load->view('queues_view/'.$sgmnt);
}
I want to have this link
localhost/MySite/queues/test
NOT
localhost/MySite/queues/index.php/test
or I can still type
localhost/MySite/queues/index.php/test
but URL must show only
localhost/MySite/queues/test