my_controller/index | my-controller/my-method -> my_controller/my_method */ $route['default_controller'] = 'login'; $route['no_access/([^/]+)'] = 'no_access/index/$1'; $route['no_access/([^/]+)/([^/]+)'] = 'no_access/index/$1/$2'; $route['sales/index/([^/]+)'] = 'sales/manage/$1'; $route['sales/index/([^/]+)/([^/]+)'] = 'sales/manage/$1/$2'; $route['sales/index/([^/]+)/([^/]+)/([^/]+)'] = 'sales/manage/$1/$2/$3'; $route['reports/(summary_:any)/([^/]+)/([^/]+)'] = 'reports/$1/$2/$3/$4'; $route['reports/summary_:any'] = 'reports/date_input'; $route['reports/(graphical_:any)/([^/]+)/([^/]+)'] = 'reports/$1/$2/$3/$4'; $route['reports/graphical_:any'] = 'reports/date_input'; $route['reports/(inventory_:any)/([^/]+)'] = 'reports/$1/$2'; $route['reports/inventory_summary'] = 'reports/inventory_summary_input'; $route['reports/(inventory_summary)/([^/]+)/([^/]+)/([^/]+)'] = 'reports/$1/$2'; $route['reports/(detailed_sales)/([^/]+)/([^/]+)/([^/]+)'] = 'reports/$1/$2/$3$/$4'; $route['reports/detailed_sales'] = 'reports/date_input_sales'; $route['reports/(detailed_receivings)/([^/]+)/([^/]+)/([^/]+)'] = 'reports/$1/$2/$3/$4'; $route['reports/detailed_receivings'] = 'reports/date_input_recv'; $route['reports/(specific_:any)/([^/]+)/([^/]+)/([^/]+)'] = 'reports/$1/$2/$3/$4'; $route['reports/specific_customer'] = 'reports/specific_customer_input'; $route['reports/specific_employee'] = 'reports/specific_employee_input'; $route['reports/specific_discount'] = 'reports/specific_discount_input'; $route['404_override'] = ''; $route['translate_uri_dashes'] = FALSE;