我正在通过this plugin在客户的基于Wordpress的网站中提供360张图像。它可以在台式机上完美运行,但不能在移动设备上运行,因此我正在尝试使用the Google VR View tutorial provided via Google Developers的最直接方法。
但是,当我实现JavaScript代码时,它不会自行加载图像,它的出现是因为它们不是通过HTTPS而是通过HTTP提供,或者说控制台是这样提供的:
Mixed Content: The page at 'https://storage.googleapis.com/vrview/2.0/index.html?image=http://samyrbuffet.com.br/wp-content/uploads/2019/08/goias360-01.jpg&' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://samyrbuffet.com.br/wp-content/uploads/2019/08/goias360-01.jpg'. This request has been blocked; the content must be served over HTTPS
我了解仅HTTPS的局限性是因为脚本本身是通过HTTPS提供服务的,因此希望每个资源也都可以通过HTTPS提供服务。有办法解决这个问题吗?
非常感谢。