1、提供三个演示站点

WordPress:wp.nobugs.cn

Emlog:em.nobugs.cn

Typecho:tp.nobugs.cn

2、提供了 PHP 版本服务,可在 PHP7 以及 PHP5.6 之间切换。

3、解决 typecho 不能正常访问的问题,同时记录以下规则。

location / {
        index index.html index.php;
        if (-f $request_filename/index.html){
            rewrite (.*) $1/index.html break;
        }
        if (-f $request_filename/index.php){
            rewrite (.*) $1/index.php;
        }
        if (!-f $request_filename){
            rewrite (.*) /index.php;
        }
    }