nginx配置301永久重定向,把非www域名跳转到www域名

if ($host != www.usheweb.com) {
    rewrite ^/(.*)$ http://www.usheweb.com/$1 permanent;
}
  • 备注:
  • nginx $host:按照以下优先顺序:请求行中的主机名,或“主机”请求头字段中的主机名,或与请求匹配的服务器名
  • ngx_http_rewrite_module模块用于使用PCRE正则表达式更改请求URI,返回重定向,以及有条件地选择配置。 permanent 返回301代码的永久重定向,更多详情http://nginx.org/en/docs/http/ngx_http_rewrite_module.html