サイトで異常な問題が発生しています。すべての CSS ファイルをヘッダー ファイルに挿入し、すべての php ページに含めました。以下は、すべての php ページに含める php ヘッダー ファイルです。ただし、ヘッダーのコンテンツは表示されますが、スタイルはまったく表示されません。Css とインクルード ファイルの両方のパスを確認しましたが、まだ問題が見つかりません。
以下にパスの詳細をお知らせします。問題を見つけられなかった場合でも、問題を見つけることができるかもしれません。ヘッダーは includes フォルダーにあります。今私がやろうとしているのは、admin フォルダーにある admincontent.php からヘッダーを呼び出すことです。
ヘッダーに含まれる css ファイル: localhost/bobs/css/cssfiles....
ヘッダー パス: localhost/bobs/includes/header.php
ヘッダーを呼び出しているファイル: localhost/bobs/admin/admincontent.php
<?php require_once("function.php")?>
<!DOCTYPE html>
<html leng ="en">
<head>
<meta charset="utf-8" />
<title>ClickTravelStay</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/general.css" rel="stylesheet" type="text/css">
<link href="css/footer.css" rel="stylesheet" type="text/css">
<link href="css/form.css" rel="stylesheet" type="text/css">
<link href="css/admin.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="topHeader" class="Calign">
<a href ="index.php" id="logoFigure">
<img src="img/repetimg/logo.png" height="60"/ >
</a>
<div class="cBoth"><!-- clear Both--></div>
<ul id="nav">
<li><a href="index.php">HOME</a></li>
<li><a href="vication.php">VICATION</a></li>
<li><a href="carrental.php">CAR RENTAL</a></li>
<li><a href="#">Corporate</a></li>
<li><a href="deals.php">DEALS</a></li>
<li><a href="contact.php">CONTACT</a></li>
<li><a href="about.php">ABOUT US</a></li>
</ul>
<ul id="help">
<li><a href="#">Book online or call: 080099999 Free from a landline</a></li>
</ul>
</div><!-- END OF topHeader-->
次のコードは、ヘッダー ファイルを呼び出す admincontent.php のコードです。
<?php require_once("../includes/header.php");?>
<?php require_once("../includes/connection.php");?>
<?php find_hotel_and_room_forNavig();?>
<div class="cBoth"></div>
<div id="sep"></div>
<div id="content" class="Calign">
<ul id="menu">
<?php
Navigation($selected_hot, $selected_rom);
?>
<li><a href="new_hotel.php">+ Add new Hotel >></a></li>
</ul>
<div id="subcontent">
<?php
echo $selected_hot['hotel_name']."</p>";
echo $selected_rom['room_type']."</p>";
?>
</div><!--end of subcontent-->
</div><!--end of content-->
</body>
</html>
私が理解していないのは、index.php からヘッダーを呼び出すと、このような管理フォルダー (localhost/bobs/index.php) がすべて正常に機能するが、管理フォルダーからヘッダーを参照できないということです。他にセットアップが必要なものがない限り、パスは問題ないので、これはバグですか。ヘッダーのコンテンツにはアクセスできますが、スタイルはまったく表示されません。HTMLはいつものように表示されますが、スタイルはまったくありません。ご支援ありがとうございました。