如何使用路由或htaccess文件减少编码器中的url


How to reduce url in codeigniter using routes or htaccess file

我想转换我的urlhttp://192.168.2.123/ca_practice_management/dashboards/department_dashboard/index/depid00103

http://192.168.2.123/ca_practice_management/depid00103

应该是htaccess文件还是routes.php

这不是codeigniter配置,如果我们忽略用htdocs替换项目文件夹,你最好的解决方案是使用虚拟主机

$route['folder/controller/(:any)'] = "controller/(:any)";
http://www.codeigniter.com/userguide2/general/routing.html