如何在codeigniter中使用重新路由?

时间:2013-03-01 13:58:28

标签: codeigniter codeigniter-2

例如我有URI /index.php/system/index/page/5,是否可以重新路由它看起来像index.php/page/5

1 个答案:

答案 0 :(得分:1)

是的,您可以在application / config / routes.php中执行此操作。你会做的

$route['page/5'] = "system/index/page/5";

如果你打算多次使用同样的url结构,比如

/index.php/system/index/page/1
/index.php/system/index/page/2
/index.php/system/index/page/3

然后你可以做

$route['page/(:num)'] = "system/index/page/$1";