0

我目前正在为一家新闻机构制作一个小型 CMS。管理员将在一段时间内更新新闻。现在我想要url看起来像http://somedomain.com/apple-iphoe5c-released,而不是像http://somedomain.com/top-news/1。我在gocart(内置 codeigniter)中看到,他们有带有产品名称的 url。我怎么能做到这一点?

4

1 回答 1

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

于 2013-09-14T07:52:22.090 回答