Bootstrap

Nginx拦截请求

拦截所有 cn 开头的请求

 location /cn/ {
     charset utf-8;
     default_type text/html;
     return 200 '网站维护中,请稍候^_^';
  }
;