nginx error_page的配置

2021/10/29 7:09:38

本文主要是介绍nginx error_page的配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

error_page可以配置在http、server、location块;

 

1. 跳转

error_page 404 http://www.baidu.com;

 

2. 重定向

我尝试把页面放到别的路径下,但是error日志显示,error.html只能放在nginx/html目录下,查看官方文档也没有其他方法。

error_page 404 =200 /error.html;

 

3.@符号指定到location的url上

error_page 404 @another_url;
        location @another_url {
            root /home/wc/nginx.d;
        }

 



这篇关于nginx error_page的配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程