iFrame not loading URL

前端 未结 5 855
心在旅途
心在旅途 2020-12-28 15:41

I am using the following simple iFrame code to load Yahoo but it\'s not loading anyway. in Chrome Inspector I see the URL status as 301 first and then cancel. Any idea why i

5条回答
  •  鱼传尺愫
    2020-12-28 16:03

    If the site hosting the webpage forces the use of a secure HTTPS connection, some browsers (chrome for sure) will require that all network resources use HTTPS as well.

    The URL in your current iframe is using HTTP src="http://yahoo.com"

    Try using HTTPS: src="https://yahoo.com"

提交回复
热议问题