廖井涛
2025-06-06 32e8ae44d542d6f6d2dc82896f5ffe58ce695889
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
 
<%response.setStatus(200);%>
 
<!DOCTYPE html>
<html>
<head>
    <title>404 - 页面不存在</title>
</head>
 
<body>
    <h2>404 - 页面不存在.</h2>
    <p><a href="<c:url value="/"/>">返回首页</a></p>
</body>
</html>