我有一个包含所有项目列表的页面。这是http://localhost/myproject/items
现在我有项目详细信息页面,根据点击的项目从数据库中获取数据 商品详情页面的网址为http://localhost/myproject/items/item_detail/3
我想从http://localhost/myproject/items/item_detail/3更改路线 到http://localhost/myproject/items/ {item title}
routes.php
$route['items/{item title}'] = "items/item_detail/$1";
如何在上面的代码
中取代项目标题(来自数据库)代替{item title}请帮忙