If there is only one GET parameter in URL its name will be considered as first URI segment. As I can see this is to make URL like http://example.com/?blog/post/test to work without mod_rewrite.
This is a god think but sometimes I need to accept first GET parameter. For example, some major link directories are adding ?from=dir to each link. So when going through http://example.com/?from=dir I’m getting 404 since I have nothing mapped to “from”. I can map controller to “from”. It will solve one issue but not all similar issues…
Is there a way to accept first parameter as it is?
