📜  在 nginx 配置中获取没有子域的主机名 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:53.393000             🧑  作者: Mango

代码示例1
# copy as it is do not replace domain with your domain name
server {
    if ($host ~ ^www\.(?.+)$) {
        return  301 $scheme://$domain$request_uri;
    }
}