I would like to remove our welcome contoroller from url how to remove index using codegniter
$route['^(:any)(/:any)?$'] = "welcome/$0";
but my links are
<?php echo site_url('welcome/about'); ?>
<?php echo site_url('welcome/index'); ?>
<?php echo site_url('welcome/contact'); ?>
When click this link the url is same welcome/contact and error page occurred my $route only works localhost/mydomain/index
when click any url localhost/mydomain/welcome/contact