nginx 配置简单 301 重定向

server {
    listen 80;
    server_name your.first.domain;
    rewrite ^(.*) http://your.second.domain:8000$1 permanent;
}
原文地址:https://www.cnblogs.com/savokiss/p/11649982.html