Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有 URI /index.php/system/index/page/5,是否可以重新路由它看起来像index.php/page/5?
/index.php/system/index/page/5
index.php/page/5
是的,您可以在 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";