gpt4 book ai didi

php - 图标未显示

转载 作者:行者123 更新时间:2023-12-04 04:34:43 25 4
gpt4 key购买 nike

我有一个小问题。

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

在某些页面上一切正常,并且图标显示正确,但是在其他站点上我无法显示图标。我尝试将 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函数引起的,对吗?

最佳答案

请显示两个页面的网址。
猜测您在相对网址中的问题。假设第一个 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/">

关于php - 图标未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19950330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com