Spring WebFlow を使用して、計算された URL を ftp サーバーにリダイレクトしようとしていますが、ExternalRedirect コードには次の行があります。
} else if (location.startsWith("http://") || location.startsWith("https://")) {
sendRedirect(location, request, response);
} else {
sendServletRelativeRedirect(location, request, response);
}
Spring WebFlow をたとえば ftp://example.com/ にリダイレクトする方法はありますか?