私は次のようなURL構造を持っています
http://example.com/merchant/index/1-westside
現在、routes.phpに1行追加しました
$route['merchant/(:any)'] = "merchant/index";
このルートを使用することで、次のようなURLを取得しています
http://example.com/merchant/1-westside
しかし、私は次のようなURLが必要です
http://example.com/1-westside
要するに、controller_name、つまり「merchant」もURLから隠したいのです。助けてください。