I have this form:
<form name = "search" action="" method="GET">
<input name="first" type="text" value="First"/>
<input name="second" type="text" value="Second"/>
<input name="submit" type="submit" value="Submit"/>
</form>
and following config file:
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger']= 'd'; // experimental not currently in use
But when I click submit, it is passing values as query string and not as URI segments. I need to have the URI segments enabled. How can I do this?