Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1130349
Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionPreviously Chrome, Firefox, Edge, and other browsers showed our site as fully SSL/HTTPS secure. For some reason, they now warn about mixed content.
But the content in question seems to be secure.
This only affects a subset of the images on each page. Here's one example—a footer image. The image is entered like this on the WP back-end:
<img src=";l=v4" />
Firebug > Inspect Element shows:
<img src=";l=v4">
Firefox > View Source shows:
<img src=";l=v4" />
But Firebug > Network tab > Protocol column reports the image as:
HTTP/1.1
Chrome developer tools show the same results. What could cause this problem?
Closed. This question is off-topic. It is not currently accepting answers.Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionPreviously Chrome, Firefox, Edge, and other browsers showed our site as fully SSL/HTTPS secure. For some reason, they now warn about mixed content.
But the content in question seems to be secure.
This only affects a subset of the images on each page. Here's one example—a footer image. The image is entered like this on the WP back-end:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4" />
Firebug > Inspect Element shows:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4">
Firefox > View Source shows:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4" />
But Firebug > Network tab > Protocol column reports the image as:
HTTP/1.1
Chrome developer tools show the same results. What could cause this problem?
Share Improve this question asked Dec 27, 2018 at 23:11 Andy GieslerAndy Giesler 3091 gold badge2 silver badges11 bronze badges 1 |2 Answers
Reset to default 3You have "www.wisconsinwetlands" URLs redirecting to insecure "http://wisconsinwetlands".
The cases you have used these is in the images on the page. Every image that is set as "https://www." redirects to the insecure version.
So while you do need to fix that and correctly configure your setup so that both "www" and non-www URLs are secure, you could quickly solve the problem by removing the www from your image URLs.
301 redirects are the reason.
In your site you have this image:
https://www.wisconsinwetlands/wp-content/uploads/2015/04/mainheader7-1.jpg
So it looks like HTTPS, but... If you go and visit that link, you'll get redirected with 301 to:
http://wisconsinwetlands/wp-content/uploads/2015/04/mainheader7-1.jpg
So it's not over HTTPS.
Closed. This question is off-topic. It is not currently accepting answers.Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionPreviously Chrome, Firefox, Edge, and other browsers showed our site as fully SSL/HTTPS secure. For some reason, they now warn about mixed content.
But the content in question seems to be secure.
This only affects a subset of the images on each page. Here's one example—a footer image. The image is entered like this on the WP back-end:
<img src=";l=v4" />
Firebug > Inspect Element shows:
<img src=";l=v4">
Firefox > View Source shows:
<img src=";l=v4" />
But Firebug > Network tab > Protocol column reports the image as:
HTTP/1.1
Chrome developer tools show the same results. What could cause this problem?
Closed. This question is off-topic. It is not currently accepting answers.Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionPreviously Chrome, Firefox, Edge, and other browsers showed our site as fully SSL/HTTPS secure. For some reason, they now warn about mixed content.
But the content in question seems to be secure.
This only affects a subset of the images on each page. Here's one example—a footer image. The image is entered like this on the WP back-end:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4" />
Firebug > Inspect Element shows:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4">
Firefox > View Source shows:
<img src="https://widgets.guidestar/gximage2?o=7583405&l=v4" />
But Firebug > Network tab > Protocol column reports the image as:
HTTP/1.1
Chrome developer tools show the same results. What could cause this problem?
Share Improve this question asked Dec 27, 2018 at 23:11 Andy GieslerAndy Giesler 3091 gold badge2 silver badges11 bronze badges 1-
you could try going doing a db search and replace all
http://widget.guidestarwithhttps://widget.guidestar– rudtek Commented Dec 28, 2018 at 22:31
2 Answers
Reset to default 3You have "www.wisconsinwetlands" URLs redirecting to insecure "http://wisconsinwetlands".
The cases you have used these is in the images on the page. Every image that is set as "https://www." redirects to the insecure version.
So while you do need to fix that and correctly configure your setup so that both "www" and non-www URLs are secure, you could quickly solve the problem by removing the www from your image URLs.
301 redirects are the reason.
In your site you have this image:
https://www.wisconsinwetlands/wp-content/uploads/2015/04/mainheader7-1.jpg
So it looks like HTTPS, but... If you go and visit that link, you'll get redirected with 301 to:
http://wisconsinwetlands/wp-content/uploads/2015/04/mainheader7-1.jpg
So it's not over HTTPS.
本文标签: sslAll content is HTTPSbut browsers warn of HTTP mixed content
版权声明:本文标题:ssl - All content is HTTPS, but browsers warn of HTTP mixed content 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749063198a2310416.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


http://widget.guidestarwithhttps://widget.guidestar– rudtek Commented Dec 28, 2018 at 22:31