在Nginx配置文件加上这个判断就,重启Nginx就可以了。
rewrite ^(/.*)$ https://$host/$1 permanent;这句命令可以使http强制跳转https,但是APP在使用post方式调http接口时,服务器自动将post请求改为get请求,参数丢失。return 307 https://$server_name$request_uri;命令可以使301转为307,这时APP调接口接可以正常使用了。不过有时候ios可以正常调用,但是Android调不起,就需要Android改配置了。