Spring Cloud 重定向到GatewayFilter工厂
2024-01-05 17:36 更新
RedirectTo
GatewayFilter工厂采用一个status
和一个url
参数。状态应该是300系列重定向http代码,例如301。URL应该是有效的URL。这将是Location
标头的值。
application.yml。
spring: cloud: gateway: routes: - id: prefixpath_route uri: https://example.org filters: - RedirectTo=302, https://acme.org
这将发送带有Location:https://acme.org
标头的状态302以执行重定向。
以上内容是否对您有帮助:
更多建议: