我們最近搬到我們的應用程序到HTTPS域名,但現在我們所有的內容從服務器被服務被屏蔽的資源被阻止HTTPS Thymeleaf
這是下面的消息,我們正在對所有:
Mixed Content: The page at 'https://localhost:8443/login' was loaded over HTTPS, but requested an insecure stylesheet 'http://localhost:8080/resources/css/base.css'. This request has been blocked; the content must be served over HTTPS.
在我們的HTML,我們通過下面一行調用此:
<link th:href="@{/resources/css/baseline.css}" type="text/css" media="all" rel="stylesheet"/>
誰能幫助我們找出我們應該如何爲我們的CSS/JS等內容,並把它活像k在https環境中。
僅供參考我們正在使用Spring MVC作爲我們的應用程序框架。