dbms_gdidc/idcproject/WebContent/in2dex.jsp
2021-12-08 09:35:54 +09:00

16 lines
408 B
Plaintext

<%@ page import="java.io.*,java.util.*" %>
<% pageContext.setAttribute("phpurl",request.getScheme()+"://"+request.getServerName()); %>
<html>
<head>
<title>DBMS TRI ABILITY</title>
</head>
<body>
<%
// New location to be redirected
String site = new String("${phpurl}/DefaultPage.jsp");
response.setStatus(response.SC_MOVED_TEMPORARILY);
response.setHeader("Location", site);
%>
</body>
</html>