我有一个像这样的 url 结构
http://example.com/merchant/index/1-westside
目前我在 routes.php 中添加了一行,例如
$route['merchant/(:any)'] = "merchant/index";
通过使用这条路线,我得到了类似的网址
http://example.com/merchant/1-westside
但我需要像这样的网址
http://example.com/1-westside
简而言之,我想从 url 中隐藏控制器名称,即“商家”。请帮忙。