NGINX 301跳转的伪静态 NGINX 301跳转的伪静态 2015 年 1 月 1 日 北漂小兄弟 Comments 0 Comment server { listen 80; server_name inbeijing.org; location / { rewrite ^(.*) http://www.inbeijing.org$1 permanent; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }