.htaccess または CI ルーティングを使用して Web サイトの特定の URL を書き換える方法
http://www.domain.com/user_controller/newfunction/username
なので
.htaccess または CI ルーティングを使用して Web サイトの特定の URL を書き換える方法
http://www.domain.com/user_controller/newfunction/username
なので
$route['/(:any)'] = "/user_controller/newfunction/$1";
またはhtaccessを試してください
RewriteEngine On
RewriteRule ^([^/]*)$ /user_controller/newfunction/$1 [L]
/application/config/routes.php
$route['/all/other/routes/must/come/first!'] = "wherever/you/want";
$route['/(:any)'] = "/user_controller/newfunction/$1";