在Nginx中,您可以使用error_page
指令来指定当请求遇到特定错误时应当显示的自定义错误页面。为了实现带有图片的自定义错误页面,可以按照以下步骤操作:
404.html
的文件,并在其中使用<img>
标签来引用图片。nginx.conf
或一个包含特定站点配置的文件),您需要添加一个server
块来定义错误处理。例如:server {
listen 80;
server_name example.com;
location / {
# 其他正常的处理逻辑
}
# 错误处理
error_page 404 /404.html;
error_page 500 /500.html;
}
在这个例子中,当服务器收到404(未找到)或500(服务器内部错误)状态码的请求时,它会显示对应的错误页面。http://example.com/asdf
)来触发404错误,并检查是否显示了自定义的404页面。https://nginx.org/en/docs/http/ngx_http_core_module.html#error_page
看看重点哈
Syntax: error_page code ... [=[response]] uri;
Default: —
Context: http, server, location, if in location
理解error_page指令:
error_page
指令用于定义在出现特定HTTP错误时要显示的页面或重定向到的URL。它允许您自定义错误处理行为。基本语法:
error_page code [reason] uri;
code
是HTTP错误代码,uri
是要显示或重定向到的页面或URL。示例配置:
error_page 404 /404.html;
error_page 500 http://example.com/error500.html;
多个错误处理:
error_page 404 /404.html;
error_page 500 502 503 504 /5xx.html;
全局错误处理:
http
块中定义的error_page
指令可用于处理所有虚拟主机的错误。实现一个自定义错误页面,页面中有个图片展示
大致结构如下
server {
listen 80;
server_name your_domain.com;
error_page 404 /error/custom_404.html;
location = /custom_404.html {
alias /path/to/your/site;
}
# 其他配置...
}
真实案例如下 :
开启自定义页面
同时配置
/error
的location
转发到 /error/xxxx
, 故下面需要配置个location
注意alias
将图片资源和静态HTML置于 Nginx的 html目录下
静态页面 (demo)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div align="center">
<img src="error/404.png">
</div>
</body>
</html>
注意 error/404.png
效果如下