我正在嘗試創建一個使用php的網站,並使用外部css文件。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';
它工作正常,但是當我嘗試創建子目錄像其他的index.php文件child/index.php,它表示沒有找到css文件。 我試圖head.php更改爲
<link rel="stylesheet" type="text/css" href="<? echo $server ?>/style/style.css" />
,它是不會太奏效。
我該如何解決這個問題?