/*
|--------------------------------------------------------------------------
| Enable Query Strings
|--------------------------------------------------------------------------
|
| By default CodeIgniter uses search-engine friendly segment based URLs:
| [url]www.your-site.com/who/what/where/[/url]
|
| You can optionally enable standard query string based URLs:
| [url]www.your-site.com?who=me&what=something&where=here[/url]
|
| Options are: TRUE or FALSE (boolean)
|
| The two other items let you set the query string "words" that will
| invoke your controllers and its functions:
| [url]www.your-site.com/index.php?c=controller&m=function[/url]
|
| Please note that some of the helpers won't work as expected when
| this feature is enabled, since CodeIgniter is designed primarily to
| use segment based URLs.
|
*/ $config['enable_query_strings']=FALSE; $config['controller_trigger']='c'; $config['function_trigger']='m';