我有一個使用jekyll製作的博客,主題是https://github.com/rocka0/myblog。我想知道爲什麼我的圖像沒有載入關於我的頁面。爲什麼在github中託管圖像時不能加載到jekyll中?
圖片的錯誤是:無法加載資源:服務器響應狀態爲404(未找到)。
我有一個使用jekyll製作的博客,主題是https://github.com/rocka0/myblog。我想知道爲什麼我的圖像沒有載入關於我的頁面。爲什麼在github中託管圖像時不能加載到jekyll中?
圖片的錯誤是:無法加載資源:服務器響應狀態爲404(未找到)。
點http://rocka0.github.io/myblog設置你baseurl
到/myblog
(沒有尾隨斜線)和致電
<img itemprop="image" class="img-rounded" src="{{ site.baseurl }}/assets/img/blog-author.jpg" alt="Tush Chen">
從this config,你rocka0/myblog/_config.yml#L3-L4
應該是:
# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
# Used for Sitemap.xml and your RSS feed
url: http://rocka0.github.io/
# If you're hosting your site at a Project repository on GitHub pages
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: "/myblog"
您能否幫助我搜索? – sharmano
筆者圖像(馬里奧Geekstatic的Facebook頭像)是正方形的。其他一切都可以。情況是好的。但是當我看着你的config.yml
你的baseurl是/myblog
。改回正確的子路徑是/myblog/
此外,檢查,如果你url
(#底座主機名&協議爲您的網站)在config.yml
感謝它的工作。但是搜索呢? – sharmano
@sharmano請一次提出一個問題,(請注意,您還沒有給出當前搜索問題的[mcve])。 – jonrsharpe
@jonrsharpe對不起。下次我會記住這一點! – sharmano