今天有位客户问ytkah在nginx服务器如何设置http 301重定向到https,其实不难。他的服务器安装宝塔面板了,更好操作了。进入站点设置的配置文件,如下图所示,在第11行左右加入跳转代码
#301-START
if ($host ~ '^abc.com'){
return 301 https://www.abc.com/$request_uri;
}
#301-END
#301-START
if ( $scheme = http ){
return 301 https://$server_name$request_uri;
#或return 301 https://www.abc.com/$request_uri;
}
#301-END
另外一种方法是直接在nginx配置文件里改,一般是在会在 /usr/local/nginx/conf/nginx.conf
server {
listen 80;
...
return 301 https://$server_name$request_uri;
}
server {
listen 443;
...
}