I WANT to show the query string for my CodeIgnitor 4 app. In CI3 we had Config directives like $config['enable_query_strings'] = TRUE;
.
In CI4 we have public string $uriProtocol = 'PATH_INFO';
or public string $uriProtocol = 'QUERY_STRING';
. This impacts how the ROUTES are configured in Config\Routes.php; but, no matter how I build the route, it still just gives me the URL path to the controller.