Web

[Web] favicon.ico 404 (Not Found) 해결 방법

azureun 2024. 8. 23. 15:46

favicon.ico 404 error

<원인>

favicon : 인터넷 웹 브라우저의 주소창에 표시되는 웹사이트나 웹페이지를 대표하는 아이콘

 

웹 사이트에서 자동으로 /favicon.ico 경로에서 favicon을 요청하는데

이 경로에 파일이 없으면 404 에러가 발생한다.

 

<해결 방법>

html 파일 head 부분에 지정할 favicon 경로를 넣거나

href="#"을 해주면 문제가 해결된다.

<link rel="icon" href="/favicon path/favicon.ico"/>
<link rel = "shortcut icon" href="#">

 

 

https://stackoverflow.com/questions/39149846/why-am-i-seeing-a-404-not-found-error-failed-to-load-favicon-ico-when-not-usin

 

Why am I seeing a 404 (Not Found) error failed to load favicon.ico when not using this?

Synopsis After creating a simple HTML template for testing purpose, with no favicon.ico, I receive an error in the console "Failed to load resource: the server responded with a status of 404 (Not ...

stackoverflow.com