如何在 Codeigniter route.php 中的根目录后添加通配符?

How to add wildcard after the root directory in Codeigniter route.php?

如何在根目录后直接加通配符

$route['/:any'] ='controller/method'; 

在 Codeigniter 中可能吗?

使用

$route['(:any)'] = 'controller/method';

参见 Codeigniter manual

您可以使用 (:any) 代替 /:any