当前位置 : 主页 > 网页制作 > css >

css – 字体和字体没有通过SSL加载的令人敬畏的图标

来源:互联网 收集:自由互联 发布时间:2021-06-13
我正在尝试通过SSL正确加载我的网站,每次查看页面时,图标和字体都没有加载. 这是我正在使用的CSS和字体真棒. link href="css/bootstrap.min.css" rel="stylesheet"link href="css/style.min.css" rel="styleshe
我正在尝试通过SSL正确加载我的网站,每次查看页面时,图标和字体都没有加载.

这是我正在使用的CSS和字体真棒.

<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.min.css" rel="stylesheet">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600' rel='stylesheet' type='text/css'>

Here’s a link to the website in case you want to check the full code

尝试从href中删除http:

<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">

这里有一篇关于协议相关的文章:paulirish.com/2010/the-protocol-relative-url/

网友评论