1

我正在尝试使用 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/

4

1 回答 1

1

你应该考虑使用这个: http ://www.tukey.org/urlrewrite/

我在我从事的每个春季项目中都设置了它。

于 2011-06-25T23:15:48.963 回答