I'm using PHP SDK for Facebook in CI and all works well except in the facebook login. I set the redirect_url to 'http://mysite.com/index.php' so that facebook will redirect back to the home page after login. The problem is that when redirecting, facebook adds a query string like so: http://mysite.com/index.php?status=xxxx&code=xxxx and since my $config['enable_query_strings'] is set to false, it doesn't work. How can I get around this? I do not want to enable the query strings in CI.
Please help.