标签: php codeigniter url routes
如何最小化我的codeigniter项目网址 来自
http://localhost/newsite/news/readnews/20
到
http://localhost/newsite/news/20
或
http://localhost/newsite/20
答案 0 :(得分:1)
您需要为此创建路线。将以下内容添加到路由配置文件中。
$route['news/(:num)] = "/news/readnews/$1";