Nginx如何配置301永久重定向
server { listen 80; server_name example.com; location / { return 301 https://new.example.com$request_uri; } }
- 将"example.com"替换为你要重定向的域名。 - 将"/"替换为你要重定向的路径。 - "https://new.example.com$request_uri"是重定向的目标地址,其中"new.example.com"是你要重定向到的新域名,"$request_uri"表示将原始请求的 URL 部分传递到新的地址。
sudo systemctl restart nginx