最小化codeigniter的url

时间:2015-03-29 19:09:30

标签: php codeigniter url routes

如何最小化我的codeigniter项目网址 来自

http://localhost/newsite/news/readnews/20

http://localhost/newsite/news/20

http://localhost/newsite/20

1 个答案:

答案 0 :(得分:1)

您需要为此创建路线。将以下内容添加到路由配置文件中。

$route['news/(:num)] = "/news/readnews/$1";