我们都知道网站开启SSL显示小绿锁是需要全站https的,站点自从开启 https 之后,百度分享就不能用了!而百度不少页面都支持https,但是唯独百度分享不支持,如果你网站用https而又用了百度分享,那么就懵逼了,但是又寻找不到类似百度分享的替代品。怎么办呢?虽然网络上有七牛镜像来解决,但是如果我们把他放到本地不是更好了?!跟着博主动动手,让你百度分享仍然能在https下使用 ~
将下载的文件解压,把static文件夹放在网站的根目录下,并将对应的百度分享代码中“http://bdimg.share.baidu.com/”改为 “你的static所在URL”即可:
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"1","bdSize":"16"},"share":{"bdSize":16}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
修改为
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"1","bdSize":"16"},"share":{"bdSize":16}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>