我想根据某些逻辑重定向到某个外部URL。但是调度程序缓存开始查找相对路径,然后将URL重定向到内部域。
例如。我的申请网址为http://example.com/content/us/homepage.html
基于某些逻辑,我希望用户重定向到某个外部URL,例如
http://example222.com/content/us/en/markets.html
Dispatcher尝试在缓存中搜索/content/us/en/markets.html,如果找不到,请重定向到网址http://example.com/content/us/en/markets.html
是否需要添加任何配置以支持重定向到外部URL。
重定向到外部网址的代码逻辑是
slingResponse.setStatus(301);
slingResponse.setHeader("Location", redirectPageURL);
slingResponse.setHeader("Connection", "close");