DefaultRedirectStrategy should redirect to root if the context-relative URL does not contain the context-path.
This commit is contained in:
committed by
Eleftheria Stein-Kousathana
parent
1c53a7859b
commit
d26f40f062
@@ -73,6 +73,10 @@ public class DefaultRedirectStrategy implements RedirectStrategy {
|
||||
return url;
|
||||
}
|
||||
|
||||
if (!url.contains(contextPath)) {
|
||||
return "";
|
||||
}
|
||||
|
||||
// Calculate the relative URL from the fully qualified URL, minus the last
|
||||
// occurrence of the scheme and base context.
|
||||
url = url.substring(url.lastIndexOf("://") + 3); // strip off scheme
|
||||
|
||||
Reference in New Issue
Block a user