I\'ve written this in the CodeIgniter\'s routers.
$route[\'companyname\'] = \"/profile/1\";
This is working fine but when I type \"CompanyN
Use hooks:
Create application/hooks/LowerUrl.php
class LowerUrl {
public function run() {
$_SERVER['REQUEST_URI'] = strtolower($_SERVER['REQUEST_URI']);
}
}
Add to application/config/hooks.php
$hook['pre_system'] = array(
'class' => 'LowerUrl',
'function' => 'run',
'filename' => 'LowerUrl.php',
'filepath' => 'hooks'
);