How to change url in CodeIgniter?

I need to change www.sample.com/users/user/usernameto www.sample.com/username, but when I go to sitename/username, it will display page 404. I tried to route, and uri->segment, but I can't get it to work. Please help me with this problem!

+3
source share
2 answers

Add this line to your config/routes.phpfile.

$route['(:any)'] = "users/user/$1";

Please note: if you do this, you will have to manually add exceptions for other controllers / actions to work. So, if you have a message controller, your routes file now:

$route['posts'] = "posts";
$route['posts/(:any)'] = "posts/$1";
$route['(:any)'] = "users/user/$1";

/, , /. , /.

+3

system/application/config/routes.php :

$route['^(?!<otherController1>|<otherController2>).*'] = "users/user/$1";

, <otherController1>|<otherController1> , :

$route['^(?!welcome|post).*'] = "users/user/$1";

, Users , . :

$route['user/subscribe']            = "user/subscribe";
$route['user/username_exists']      = "user/username_exists";
$route['user/email_exists']         = "user/email_exists";
$route['user/signup']               = "user/signup";
0

Source: https://habr.com/ru/post/1715274/


All Articles