How to disable “do you want to view only the webpage content that was delivered securely” warning?

前端 未结 6 1013
走了就别回头了
走了就别回头了 2020-12-02 01:55

My website has complete https and its using outer jquery resource which is http.

In IE 8, when I\'m redirecting the site it giving me \"do you want to view only the

6条回答
  •  攒了一身酷
    2020-12-02 02:35

    There seem to be two possible problem areas and your post doesn't make clear which is the issue:

    • You are referencing a jquery script file hosted on another site which is not secure.

    As JamWaffles said, you should simply host a copy of the jquery file on your own site so it can be accessed using https. See this answer for details: https://stackoverflow.com/a/1458356/773798

    Or ...

    • You are redirecting from a secure to an unsecure site.

    I don't think this is what's causing the problem, because it will generate a different message, but for details on how to redirect from a secure to an unsecure page, see this answer: https://stackoverflow.com/a/3784676/773798

提交回复
热议问题