写一个error的错误页面
时间: 2024-02-16 19:05:16 浏览: 154
以下是一个示例的错误页面:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Error Page</title>
</head>
<body>
<h1>Oops! Something went wrong.</h1>
<p>We're sorry, but the page you requested could not be found.</p>
<p>Please check the URL and try again, or contact our support team if you continue to experience problems.</p>
</body>
</html>
```
这是一个简单的HTML页面,用于显示404错误。您可以将其保存为一个名为“error.html”的文件,并将其放置在Web应用程序的根目录下。然后,在Tomcat的web.xml文件中添加以下代码:
```
<error-page>
<error-code>404</error-code>
<location>/error.html</location>
</error-page>
```
这将把所有404错误页面重定向到这个HTML文件。您也可以创建其他错误页面,并将其重定向到相应的错误代码。
阅读全文