APPLY FOR ONLINE Zend Framework Certification

                    
                           How to Change Dash based URLs To Underscore  in Codeigniter
---------------------------------------------------------------------------------------

Step 1   Add a new class in your 'application/core' directory .

<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
 
class URLCHANGE_Router extends CI_Router 
{
    function _set_request ($param= array())
    {
        parent::_set_request(str_replace('-', '_', $param));
    }
}                      
                


Comment


Back to Top