xinyb
2024-06-15 fdd73a906963f31abb59d81c10cc163eab47404a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ page contentType="text/html;charset=utf-8"%>
<!DOCTYPE html >
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
    <%
    boolean isOpenGamePage = "true".equals(com.yc.entity.SystemConfig.getInstanse().get("isOpenGamePage"));
    if(isOpenGamePage){
    %>
    location.href="game.html";
<%}else{%>
        location.href="login.jsp";
    <%}%>
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>页面</title>
</head>
<body>
 
</body>
</html>