I've installed and configured Hiawatha and Laravel using this UrlToolkit:
UrlToolkit {
ToolkitID = laravel
RequestURI exists Return
Match .* Rewrite /index.php
}
Laravel works fine, but then I installed and configured socialite for laravel, which is a social network login add-on. Laravel needs to read the answer given by the social network through socialite by recognizing a URL formed in this way https://server.domain/callback?code=AAABAAAA...&state=OO8...&session_state=841b...
I've tried modifing the UrlToolKit in order to support string query in laravel, but it didn't worked.
UrlToolkit {
ToolkitID = laravel
RequestURI exists Return
Match /(.*) Rewrite /index.php/$1
}