我目前正在为新闻机构制作一个小型CMS。管理员将在一段时间内更新新闻。现在我希望url
看起来像http://somedomain.com/apple-iphoe5c-released
,而不是http://somedomain.com/top-news/1
。我在gocart
(内置codeigniter)中看到过,他们有带产品名称的url。我怎么能做到这一点?
答案 0 :(得分:0)
对于这件事你已经使用了ci中的路由
考虑一下小例子
$route['aboutus'] = "any controller is map to that name";
samplesite.com/aboutus [aboutus是控制器] samplesite.com/contactus [contactus是控制器]
$route['memberaccount/(:num)'] = "any controller is map to that name/$1";
samplesite.com/memberaccount/32
如果仍未尝试上述链接https://www.codeigniter.com/userguide2/general/routing.html