在我的应用程序中,我目前正在使用标准参数传递,例如 http://localhost/api/shops/deals/$shop_id
但我需要网址 http://localhost/api/shops/$shop_id/deals
我怎样才能做到这一点?
答案 0 :(得分:4)
使用application/config/routes.php
文件来执行此操作。像
$route['api/shops/(:num)/deals'] = 'api/shops/deals/$1';
现在,当您的网址为http://localhost/api/shops/3/deals
时,它将以http://localhost/api/shops/deals/3
了解更多详情https://codeigniter.com/user_guide/general/routing.html