0


二、nginx错误页面[error_page]

一、error_page

1.跳转到指定页面

解释:其原理是响应到错误代码后,导向指定的路由,然后再由指定的路由处理,如下当错误代码是404时,相当于访问

http://localhost:80/50x.html

,正好被内部传送给

 location = /50x.html

让其来进行处理(需要注意必须有

50x.html

这个页面)

        error_page 404403500 /50x.html;
        location = /50x.html {
                root /usr/share/nginx/html;}

2.跳转到指定网址

解释:其原理是响应到错误代码后,302(临时重定向到目标网址),如下当错误代码为404时,导向

https://www.baidu.com
       error_page 404403500 https://www.baidu.com;

3.更改反馈状态码

解释:本来遇到404找不到文件的错误,但是nginx可以把它状态码改为200返回给用户(例子如下)

        error_page 404=200 /50x.html;#注意这里的缩进不是随便的
        location = /50x.html {
                root /usr/share/nginx/html;}

二、应用

1.寻找错误码对应的文件

解释:error_page后面跟的

/error/404.html

就相当于其访问

http://localhost:80/error/404.html

其被

location /error

捕获

        error_page 404 /error/404.html;
        error_page 403 /error/403.html;
        location /error {alias /var/www/html;}
标签: nginx git linux

本文转载自: https://blog.csdn.net/weixin_46765649/article/details/127939697
版权归原作者 黑日里不灭的light 所有, 如有侵权,请联系我们删除。

“二、nginx错误页面[error_page]”的评论:

还没有评论