Strange routing behaviour - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Strange routing behaviour (/showthread.php?tid=12003) |
Strange routing behaviour - El Forum - 10-01-2008 [eluser]plainas[/eluser] The problem is described in this thread: http://ellislab.com/forums/viewthread/92604/ I am using CI version 1.5.4 Strange routing behaviour - El Forum - 10-02-2008 [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: 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. |