已装好SSL的域名,如何移除非HTTPS的请求?
投个谷歌广告被拒,理由是The ad is disapproved because it declares SSL but it has been detected as containing non-secure HTTP calls.站点已用LNMP装好SSL并且能访问,此时HTTP和HTTPS 并存,
请问如何移除掉HTTP的访问,只保留HTTPS的。
在/usr/local/nginx/conf/vhost 里找了对应的域名,没找到有关https的配置
谢谢。 server {
listen 80;
server_name signup.mysite.com;
rewrite ^ https://$server_name$request_uri? permanent;
}
试试这个,这是强制http转成https 使用 lnmp vhost add 或 lnmp ssl add 添加了https的话肯定在 /usr/local/nginx/conf/vhost/域名.conf 里
你可以自己检查你网站代码,里面肯定是夹杂了http的连接,确保引用的js、图片等都是https的
2楼的http 301 到 https并不能解决这个问题
页:
[1]