Dmi*_*kel 17
查看nginx目录中的html文件夹 - 应该有50x页面.
默认情况下,我相信,所有"特殊页面",包括404页面都是硬编码的
static char ngx_http_error_404_page[] =
"<html>" CRLF
"<head><title>404 Not Found</title></head>" CRLF
"<body>" CRLF
"<center><h1>404 Not Found</h1></center>" CRLF
;
Run Code Online (Sandbox Code Playgroud)
资料来源:https://github.com/nginx/nginx/blob/release-1.15.8/src/http/ngx_http_special_response.c#L132
但可以定制:
server {
...
error_page 404 /404.html;
...
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
12594 次 |
| 最近记录: |