I\'ve written this in the CodeIgniter\'s routers.
$route[\'companyname\'] = \"/profile/1\";
This is working fine but when I type \"CompanyN
Use Router:
$urix = substr(strtolower($_SERVER['REQUEST_URI']), 1); $route["(?i)$urix"] = $urix;
Solution for all Case Insensitive Routings..