Codeigniter Routes regex - using dashes in controller/method names

前端 未结 9 1227
小鲜肉
小鲜肉 2020-11-29 01:32

I\'m looking for a one line route to route dashed controller and method names to the actual underscored controller and method names.

For example the URL



        
9条回答
  •  春和景丽
    2020-11-29 01:40

    Actually this is native now in Codeigniter 3 Just do this in routes file

       $route['translate_uri_dashes'] = TRUE;
    

    And it will do it for controllers and methods automatically .
    Please vote this answer up , as it's most recent

提交回复
热议问题