nginx http301强制跳转https域名跳转到带www

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx http301强制跳转https域名跳转到带www相关的知识,希望对你有一定的参考价值。

http强制跳转到https
nginx配置文件添加:
if ($scheme = http) {
return 301 https://$server_name$request_uri;
}

Nginx跳转自动到带www域名规则配置:
在nginx大server中添加
server{
listen 80;
listen 443;
server_name www.xx.com xx.com;
if ($host != ‘www.xx.com‘) {
rewrite ^/(.*)$https://www.xx.com/$1 permanent;
}

参考文档:http://wenku.it168.com/d_000938140.shtml

以上是关于nginx http301强制跳转https域名跳转到带www的主要内容,如果未能解决你的问题,请参考以下文章

Nginx 配置 https 后,http 强制跳转到 https,主域名跳转至带 www 的二级域名

nginx http强制跳转https

nginx http强制跳转https

如何让http自动跳转https

Nginx强制跳转Https配置

为二级域名注册ssl证书,并强制使用https对http进行跳转