包含 ** 永久跳转301和内部重写地址栏不变** 两种方案方案 1301 永久跳转推荐SEO 友好访问http://域名/→ 自动跳转到http://域名/指定目录/server { listen 80; # 你的域名 server_name your-domain.com; # 根目录自动 301 跳转到指定目录 location / { # 把 /your-dir/ 改成你要跳转的目标目录 return 301 $scheme://$host/your-dir/; } # 其他正常配置 root /var/www/html; index index.html index.php; }方案 2内部重写地址栏不变化访问http://域名/浏览器地址栏还是 /但实际显示/指定目录/的内容server { listen 80; server_name your-domain.com; root /var/www/html; index index.html index.php; # 根目录内部重写到指定目录 location / { # 把 /your-dir/ 改成你的目标目录 rewrite ^/$ /your-dir/ break; } }