gpt4 book ai didi

php - 当 header.php 文件包含在根文件夹以外但在根文件夹上工作时,css 不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:17:04 25 4
gpt4 key购买 nike

我的根文件夹中有一个 index.php 文件,它包含一个头文件,如

include 'include/header.php';

在 header.php 中,我在开始时有以下代码......

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<title>title</title>
<link rel="stylesheet" href="./css/main.css" type="text/css" />
<link rel="stylesheet" href="./css/dashboard.css" type="text/css" />
<script src="/js/jquery-1.10.2.js"></script>
<script src="/js/bootstrap.js"></script>
<script src="/js/tablesorter/jquery.tablesorter.js"></script>
<script src="/js/tablesorter/tables.js"></script>
</head>
<body>

上面的 index.php 在根文件夹上工作正常,但是当我在其他文件夹中使用它时,css 不适用于同一个文件...如果我使用 abc/index.php 那么 css 将无法用于该文件...

Note : I have used ./ as well as / or nothing at all but its not working.

最佳答案

您可以使用 base 标签并像这样更改您的代码

<base href="http://localhost/abc/" />

<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/dashboard.css" type="text/css" />
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/tablesorter/jquery.tablesorter.js"></script>
<script src="js/tablesorter/tables.js"></script>

关于php - 当 header.php 文件包含在根文件夹以外但在根文件夹上工作时,css 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24338762/

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