所以这是我第一次提出问题,
我的jboss配置中出现了一些问题。
即时使用 jboss 6.2
已阅读本文
我做了什么?
<?xml version="1.0" encoding="UTF-8"?> <jboss-web> <context-root>/</context-root> </jboss-web>
<virtual-server name="default-host" enable-welcome-root="false">
<welcome-file-list> <welcome-file>login.xhtml</welcome-file> </welcome-file-list>
这里的问题是
请求root本身 192.168.1.98 welcome-content
当我请求192.168.1.86/login.xhtml
时我想要的是当我只请求ip地址时,它链接到login.xhtml。 现在,我要请求我的ip + login.xhtml(192.168.1.86/login.xhtml)
然后该怎么办?
需要你的帮助。
欢迎任何想法。
谢谢。答案 0 :(得分:1)
您的设置是正确的..您缺少的是index.html(放置在您的战争根文件夹中),它会重定向到您的登录页面。
当您请求192.168.1.86时,您的index.html被读取..因此,您需要从那里重定向到您的登录页面。
例如:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- forward to your login -->
<meta http-equiv="refresh" content="0;url=login.xhtml;charset=utf-8">
</head>
</html>