Below is my config.php content
<?php if ( ! defined(‘BASEPATH’)) exit(‘No direct script access allowed’);
/*
|—————————————————————————————————————
| Base Site URL
|—————————————————————————————————————
*/
$config[‘base_url’] = “”;
/*
|—————————————————————————————————————
| Index File
|—————————————————————————————————————
*/
$config[‘index_page’] = “index.php”;
/*
|—————————————————————————————————————
| URI PROTOCOL
|—————————————————————————————————————
| ‘AUTO’ Default - auto detects
| ‘PATH_INFO’ Uses the PATH_INFO
| ‘QUERY_STRING’ Uses the QUERY_STRING
| ‘REQUEST_URI’ Uses the REQUEST_URI
| ‘ORIG_PATH_INFO’ Uses the ORIG_PATH_INFO
|
*/
$config[‘uri_protocol’] = “AUTO”;
/*
|—————————————————————————————————————
| URL suffix
|—————————————————————————————————————
*/
$config[‘url_suffix’] = “”;
/*
|—————————————————————————————————————
| Default Language
|—————————————————————————————————————
|
*/
$config[‘language’] = “english”;
/*
|—————————————————————————————————————
| Default Character Set
|—————————————————————————————————————
|
*/
$config[‘charset’] = “UTF-8”;
/*
|—————————————————————————————————————
| Enable/Disable System Hooks
|—————————————————————————————————————
*/
$config[‘enable_hooks’] = FALSE;
/*
|—————————————————————————————————————
| Class Extension Prefix
|—————————————————————————————————————
|
| This item allows you to set the filename/classname prefix when extending
| native libraries. For more information please see the user guide:
|
| http://ellislab.com/codeigniter/user-guide/general/core_classes.html
| http://ellislab.com/codeigniter/user-guide/general/creating_libraries.html
|
*/
$config[‘subclass_prefix’] = ‘MY_’;
/*
|—————————————————————————————————————
| Allowed URL Characters
|—————————————————————————————————————
|
*/
$config[‘permitted_uri_chars’] = ‘a-z 0-9~%.:_\-’;
/*
|—————————————————————————————————————
| Enable Query Strings
|—————————————————————————————————————
|
*/
$config[‘enable_query_strings’] = FALSE;
$config[‘controller_trigger’] = ‘c’;
$config[‘function_trigger’] = ‘m’;
$config[‘directory_trigger’] = ‘d’; // experimental not currently in use
/*
|—————————————————————————————————————
| Error Logging Threshold
|—————————————————————————————————————
|
*/
$config[‘log_threshold’] = 0;