Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 (?)?

share|improve this question
I've never had this url format. Are you sure that this is caused by the Facebook SDK? and when exactly such links are formed? – ifaour Mar 4 '12 at 21:16
yes, it is caused by fb sdk or better to say by $config['enable_query_strings'] = TRUE; I see these links when I use anchor('welcome') or anchor('/welcome'). when I turn enable_query_strings to FALSE link are ok but fb sdk is not working properly (cannot login via fb) – peter Mar 5 '12 at 16:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.