php - Codeigniter 3 Routing Issues -
i have setup route in routes.php file this:
$route['videos/video'] = 'videos';
so if user enters:
http://domain.com/videos/video/
i want load videos page works, issue running is keeping url same when user clicks on 1 of videos videos page url this:
http://domain.com/videos/video/video/1
when should this:
http://domain.com/videos/video/1
is there way change behavior?
also, there way hide method in url?
$route['videos/video'] = "videos/index"; $route['videos/video/(:num)'] = "videos/video/$1";
Comments
Post a Comment