zoukankan      html  css  js  c++  java
  • Nginx优雅显示错误页面

    1.跳转到网上

    #error_page配置的是http这种的网络地址
    [root@web01 conf.d]# cat error.conf 
    server {
        listen       80;
        server_name  linux.error.com;
    
        location / {
            root /code/error;
            index index.html;
            error_page 404 http://www.baidu.com;
        }
    }

    2.跳转本地文件

    [root@web01 /code/error]# vim /etc/nginx/conf.d/error.conf
    server {
        listen 80;
        server_name  linux.error.com;
    
        location / {
            root /code/error;
            index index.html;
            error_page 404 403 /404.jpg;
        }
    }

    3.访问PHP的错误页面跳转

    [root@web01 /code/error]# vim /etc/nginx/conf.d/error.conf
    server {
        listen 80;
        server_name  linux.error.com;
        root /code/error;
        index index.php;
        error_page 404 403 /404.html;
    
        location ~* .php$ {
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            if (!-e $request_filename) {
                rewrite (.*) http://linux.error.com/404.jpg;
            }
        }
    }
  • 相关阅读:
    数据库存储语句
    数据库练习总结
    数据库练习
    数据库增添
    数据库创建
    cookie 和 session的区别 & 三种传值方式
    内置对象——cookie
    webform跨页面传值
    复合控件
    repeater(控件)数据展示
  • 原文地址:https://www.cnblogs.com/chenlifan/p/13652263.html
Copyright © 2011-2022 走看看