在href中使用env变量

时间:2012-11-17 00:25:05

标签: html xhtml

我有以下.xhtml文件

<h:body>
        You have been logged out. Click here <a href="http://mytestserver.com/MyApp/HomePage.jsf">Login</a>   to logon again.  
</h:body>

现在http://mytestserver.com在测试和制作方面有所不同。所以我使用的是env变量 MY_URL = HTTP://mytestserver.com/MyApp/HomePage.jsf MY_URL = HTTP://myprodserver.com/MyApp/HomePage.jsf

我如何参考MY_URL heremin href

1 个答案:

答案 0 :(得分:1)

如评论所示,只需使用相对路径:

<h:body>
    You have been logged out. Click here <a href="/MyApp/HomePage.jsf">Login</a>   to logon again.  
</h:body>

问题解决了,您可以在任何您喜欢的服务器上托管,无需变量。