You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove from luya\web\UrlManager in parseRequest().
// route matches composition exactly, so we have to remove the composition informationsif ($route === $composition) {
$parsedRequest[0] = false;
// now see if the composition (+1 as we add add trailing slash at the end) matches the cutted route request part, if so its composition prefix, remove it.
}
// keep this partelseif (substr($route, 0, $length+1) == $composition.'/') { // ...
As the composition will already be removed
The text was updated successfully, but these errors were encountered:
Remove from
luya\web\UrlManager
inparseRequest()
.As the composition will already be removed
The text was updated successfully, but these errors were encountered: