注意:我无法将它们打包到EAR中。这里有一些限制。
我有两个战争文件。
help.war和helpConnect.war
两者都放在GlassFish服务器的同一个域中。
从help.war的索引页面访问helpConnect.war中的页面,就像这样..
<a href="helpConnect/HelpInternal/index.htm">Help Internal</a>
这不起作用,因为当我尝试在服务器上访问时,它尝试访问的URL就是这样..
http://localhost:8080/help/helpConnect/HelpInternal/index.htm
但是,由于helpConnect是一个完全不同的war文件,我需要像这样的URL
http://localhost:8080/helpConnect/HelpInternal/index.htm
知道如何解决这个问题吗?
答案 0 :(得分:2)
你正在使用相对路径。您需要一条绝对路径:
<a href="/helpConnect/HelpInternal/index.htm">Help Internal</a>