Dev/HTML \ CSS \ JS

[ html ] favicon.ico 웹페이지 아이콘 추가

surimi🍥 2021. 3. 1. 01:54
반응형

favicon.ico가 없을시 발생하는 오류

org.springframework.web.servlet.DispatcherServlet.noHandlerFound No mapping for GET /favicon.ico

 

Failed to load resource: the server responded with a status of 404 () :8080f/favicon.ico:1


1. 프로젝트 폴더에 ico 파일 추가

2. index.html에 ico파일 경로 입력

    <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" />
    <link rel="icon" href="/img/favicon.ico" type="image/x-icon" />

 

# 완료

 

반응형