Find out what resources are not going over HTTPS

前端 未结 13 2281
花落未央
花落未央 2020-12-08 12:49

I have an ASP.NET site which should transport completely over HTTPS. However, in Google Chrome I get a warning that the page includes resources which are not secure. How can

13条回答
  •  甜味超标
    2020-12-08 13:06

    Usually this occurs because you are loading Images, javascript include files or external CSS files without using https. You can use a program such as FireBug: http://getfirebug.com/

    FireBug will tell you how your elements are loading and which aren't going through the ssl layer. If you don't have firefox, then I am pretty sure Chrome also has something similar to FireBug built in.

    Here's how to use firebug:

    1. Open firebug
    2. Click on the Console Tab
    3. Reload the page
    4. Any https errors will show in the console and tell you which resource is not working.

    Hope this helps

提交回复
热议问题