如何使用 nginx 配置文件 nginx.conf 将所有 https 域从 www 重定向到非 www?

如何使用 nginx 配置文件 nginx.conf 将所有 https 域从 www 重定向到非 www?

我想使用 Nginx 配置文件 nginx.conf 将所有域名从 www 重定向到非 www。我尝试使用以下配置,但它仅适用于以 HTTP 开头的 URL,而不适用于 HTTPS

我已经添加了以下服务器块

server {
    server_name "~^(?!www\.).*" ;
    return 301 $scheme://$1$request_uri ;
}

相关内容