after inlcuding facebook sdk api into my codeigniter I am getting URI links like this http://domain.com/?/welcome. How can I remove question (?) sign from uri?
CI config.php
$config['uri_protocol'] = 'AUTO';
$config['enable_query_strings'] = TRUE;
when I change these configs my links stops working. Any idea how to remove (?)?