Both sement based and query string(GETmethod) variables in url of codeigniter site
By default codeigniter doesn’t support query string or get method variables, we can use only segment based url. To enable both segment base and query string (GET method) variables, you need to follow the upcoming steps… 1 ) In yout codeigniter config file change the uri_protocol as specified bellow, application/config/config.php $config['uri_protocol'] = ‘AUTO’; to $config['uri_protocol'] [...]