Tomcat自动跳转

Tomcat自动跳转

汗颜,有个笨方法用以实现自动跳转。将 webapps 下ROOT目录的 index.jsp 改为 index.jsp.bak 作为备份,创建 index.html 文件,内容为

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>自动跳转</title>
</head>
<body>
</body>
<script language="javascript" type="text/javascript">                    
    window.location.href="https://liyachuan.github.io"; <!--跳转页面-->
</script>
</html>
------ 本文结束------
0%