唯一的真理

True or False

Octopress 404公益页面

404公益页面

访问QQ 404公益页面,获取需要的代码
www.qq.com/404
将代码放入Nginx制定的目录中,并配置nginx即可

1
2
3
4
5
6
7
8
9
10
11
server  {
        listen 80;
        server_name _;
        root /octopress/public/;
                location /{
                index index.html;
                }
        error_page 404 "http://leon8693.github.io/404/404.html";
        error_page 403 "http://leon8693.github.io/404/404.html";
        access_log /data1/logs/nginx/access.log gzip;
        }

效果如下
http://leon8693.github.io/404/404.html

返回顶部