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
URLを次のようにします。
tasks/
これをroutes.phpで試しましたが、ページが見つからないというエラーが表示されます。
$route['tasks/index/(:num)'] = 'tasks';
それは逆です。
やってみてください:
$route['tasks/(:num)'] = 'tasks/index/$1';
CIルーティングドキュメント