我正在尝试使用 php 创建一个网站,并且我使用外部 css 文件。
我有 head.php 文件
<title>TITLE</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
这是我的 index.php 文件
$server = $_SERVER['DOCUMENT_ROOT'];
include $server.'/head.php';
它工作正常,但是当我尝试在 child/index.php 等子目录中创建其他 index.php 文件时,它说找不到 css 文件。我试图将 head.php 更改为
<link rel="stylesheet" type="text/css" href="<? echo $server ?>/style/style.css" />
它也不起作用。
我该如何解决这个问题?