如何修改数据决策系统登陆地址为ip
比如原来的登陆地址:http://192.168.1.2/WebReport/ReportServer?op=fs
地址太长不好记
我想改成直接在在浏览器输http://192.168.1.2就能访问数据决策系统,可否?
修改 tomcat\conf下的web。xml 设置加载的引导页 <welcome-file>index.jsp</welcome-file>
把root目录下
index。jsp里的代码修改为以下,
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>数据决策系统</title>
</head>
<body>
<iframe id="reportFrame" src="/WebReport/ReportServer?op=fs"
name="itemslist" frameborder="0" width=100% height="100%"></iframe>
</body>
</html>
cookie 发表于 2012-7-8 22:10
解决了,修改 tomcat\conf下的web。xml 设置加载的引导页 index.jsp
把root目录下
index。jsp里的代码修 ...