2

我有一个小问题。

在我的某些页面上,我无法显示网站图标。

在某些页面上一切都很好,并且网站图标显示正确,但是在其他网站上我无法让网站图标出现。我尝试将 ico 文件放在主目录中,但没有任何结果。

这个 file1.php 工作正常:

<? include("core/config.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="include/style.css" rel="stylesheet" type="text/css">
<title>Title</title>
<link rel="shortcut icon" type="image/x-icon" href="img/flavico.fw.ico">
<script type="text/javascript" src="include/script.js"></script>
</head>

然而,在这个图标上没有显示:

<?php include("core/config.php");
include("include/resolution.php"); 
function new_function($nazwa){
global $wys;
global $db;
$wys->some_function($ub,$na,$ub_pod);   
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>title</title>
<link rel="shortcut icon" type="image/x-icon" href="img/flavico.fw.ico">
<link href="include/style.css" rel="stylesheet" type="text/css">
</head>

我假设这个问题是由 php 函数引起的,对吧?

4

1 回答 1

3

请显示两个页面的网址。在相对 url 中猜出你的问题。假设第一个 url 是http://mysite.org/file1.php,第二个是http://mysite.org/subsecrion/file2.php 那么你应该为 favicon 使用绝对路径:

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

或添加标签:

<base href="http://mysite.org/">
于 2013-11-13T09:58:04.273 回答