github 블로그에 Custom 404 페이지 만들기

게시일 : 2018년 02월 09일    
# Blog # Jekyll # Githubpages

github 블로그에 404 오류 페이지를 직접 구성할 수 있다.

기본으로 연결되는 404 페이지

blog404

404.html 설정

github 블로그 루트 폴더에 404.md 또는 404.html 파일을 생성한다.

핵심은 permalink: /404.html을 설정해주는 것이다.

---
layout: default
permalink: /404.html
---
<h1>404</h1>
<p><strong>Page not found :)</strong></p>
<p>페이지가 삭제되었거나 주소가 변경되었을  있습니다.</p>
<p>변경된 페이지는 <a href="https://yahwang.github.io">홈페이지</a>에서 검색을 통해 찾을  있습니다.</p>

Custom 404 페이지가 반영된 모습

custom404

References :