当使用搜索引擎搜索Struts2如何跳转到外部链接的时候,大多数答案是:
<result name=”foo” type=”redirect”>${externalUrl}</result>
这种方式实际不会达到跳转到 外部链接的效果。
在struts2中可以使用301、302的方式跳转:
<result name=”foo” type=”httpheader”>
<param name=”status”>301</param>
<param name=”headers.Location”>${externalUrl}</param>
</result>
参考:http://peekay.org/2008/09/03/struts2-external-redirect/