我正在尝试使用Spring WebFlow将计算网址重定向到ftp服务器,但在ExternalRedirect代码中有以下几行:
} else if (location.startsWith("http://") || location.startsWith("https://")) {
sendRedirect(location, request, response);
} else {
sendServletRelativeRedirect(location, request, response);
}
有没有办法让Spring WebFlow重定向到ftp://example.com/?