Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 var(值为 3 的 int)发送到控制器中的索引函数。 没有问题,除了 url 看起来像这样:
tasks/index/3
我希望网址是这样的:
tasks/
我在 routes.php 中试过这个,但是它给出了一个错误,说找不到页面。
$route['tasks/index/(:num)'] = 'tasks';
这是相反的方式。
尝试做:
$route['tasks/(:num)'] = 'tasks/index/$1';
CI 路由文档