EN
HTML - disable favicon request
9 points
In this short article, we would like to show how to prevent favicon requests using HTML.
Quick solution (add in the site head
element):
xxxxxxxxxx
1
<link rel="icon" href="data:," />
The solution is based on empty Data URL, that makes icon downloading avoided.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<link rel="icon" href="data:," />
5
</head>
6
<body>
7
<!-- Webpage content here ... -->
8
</body>
9
</html>