我正在使用PHP爲所有頁面提供相同的頁眉,導航和頁腳元素,但我遇到了問題;由於某些原因,PHP文件是不承認一個包括了header.html文件( 「/ header.html中」)PHP無法找到我的header.html目錄中的文件
PHP文件
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<link rel="stylesheet" type="text/css" href="/style.css">
<title>Sample Game Type</title>
</head>
<body>
<?php include("/header.html"); ?>
<div id="gamelisting"><!--Gametype Shortcuts-->
<a href="http://www.solarfusionnerf.ca/game-types/carpe-testiculum.html">
<div class="gametype">'Carpe Testiculum' (also known as just Carpe)</div>
</a>
<div class="gametype">Other Game Here</div>
<div class="gametype">Add more as neccessary</div>
</div>
<div class="gameinfo"><!--Information about game type-->
<h2 style="text-align:center;"></h2><!--Name-->
<h3>Description</h3>
<h3>Objective</h3>
<h3>Rules</h3>
</div>
</body>
然後我的頭。 html文件。
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Header</title>
</head>
<body>
<li><!--Header Buttons-->
<a href="http://www.solarfusionnerf.ca">
<div id="header">
Home
</div>
</a>
<a href="http://www.solarfusionnerf.ca/mods.html">
<div id="header">
Mods
</div>
</a>
<a href="http://www.solarfusionnerf.ca/selling.html">
<div id="header">
Selling
</div>
</a>
<a href="http://www.solarfusionnerf.ca/gallery.html">
<div id="header">
Gallery
</div>
</a>
<a href="http://www.solarfusionnerf.ca/contact.html">
<div id="header">
Contact
</div>
</a>
</li>
</body>
我在做什麼錯? header.html文件位於我的pubic_html文件的根目錄中,我試圖連接目錄/遊戲類型的.php頁面
只是順便說一句,你可能不應該有一個html,在該header.html中文件頭標籤,因爲你已經有那些你的php文件 – Terminus