10-02-2008, 05:34 PM
[eluser]dmorin[/eluser]
Make sure that if you have querystring enabled, but aren't using them to specify the controller and method, that you set:
This hides the querystring parameters from CI so it doesn't get confused and try to route based on the querystring.
Make sure that if you have querystring enabled, but aren't using them to specify the controller and method, that you set:
Code:
$config['uri_protocol'] = "PATH_INFO";
This hides the querystring parameters from CI so it doesn't get confused and try to route based on the querystring.