I\'ve written this in the CodeIgniter\'s routers.
$route[\'companyname\'] = \"/profile/1\";
This is working fine but when I type \"CompanyN
The easiest way I could think of is to enforce lowercase urls with mod_rewrite (if you're using apache...)
RewriteMap lc int:tolower RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} [R=301,L]
Source: http://www.chrisabernethy.com/force-lower-case-urls-with-mod_rewrite/