0
我正在使用XAMPP這是index.html的代碼,但favicon仍然不會更改。Favicon在XAMMP上不會更改
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
</body>
</html>
我正在使用XAMPP這是index.html的代碼,但favicon仍然不會更改。Favicon在XAMMP上不會更改
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
</body>
</html>
您需要更改「圖標版本」,它存儲在瀏覽器緩存中。
<link rel="icon" href="favicon.ico?1" type="image/x-icon">
您是否正確鏈接到了圖標?如果是這樣,您可能正面臨緩存問題。嘗試'CTRL + F5',按住SHIFT鍵的同時點擊刷新,更新favicon鏈接(如favicon.ico?v = 1'),或者等待一段時間。 –