Codeigniter HVMC modular seperation extension URL rewrite / routing

后端 未结 2 1356
孤街浪徒
孤街浪徒 2021-01-17 02:22

Ive been using HVMC modular extension, and its working great, but Im having trouble figuring out how to use, and if it is possible to use URL routing with HVMC.

Basi

2条回答
  •  不要未来只要你来
    2021-01-17 02:24

    For completeness I have been researching my own solution to this issue and the removal of the "site" prefix on the URI string can be achieved by adding the following into the routes.php config file.

    $route['(:any)'] = "site/$1";
    $route['default_controller'] = "site";
    

提交回复
热议问题