I\'ve written this in the CodeIgniter\'s routers.
$route[\'companyname\'] = \"/profile/1\";
This is working fine but when I type \"CompanyN
Just add expression "(?i)" Here example: $route['(?i)companyname'] = "/profile/1";
$route['(?i)companyname'] = "/profile/1";