php包含文件执行失败

时间:2013-05-25 12:05:50

标签: php javascript css file include

大家下午好。我坚持要包含一个包含所有“头部”信息的文件。我想打破我的页面,因此它更简单,更简单。在我的index.php文件中,我做了这个;

 <?php
 include 'Resources/includes/head.php';
 ?>

它找到了这个文件,我知道这个,因为在Dreamweaver中,当我进入我的索引页面时,它会出现在它下面的标签中。但是,当我在本地服务器上查看我的索引页时,就好像没有任何样式或脚本应用于页面。这是我的head.php文件中包含的代码。

  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <meta name="description" content="" />
  <meta name="keywords" content=""/>
  <link rel="shortcut icon" href="../images/design/icon.png" type="image/x-icon"/>
  <link rel="stylesheet" href="../css/style.css" type="text/css" media="screen"/>
  <script src="../js/jquery-1.8.3.min.js" type="text/javascript"></script>
  <script src="../js/scripts.js" type="text/javascript"></script>
  </head>

1 个答案:

答案 0 :(得分:0)

您可以尝试使用基本路径

<?php
$basepath="http://www.mysite.com/path_to_theme/";
?>

<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  <meta name="description" content="" />
  <meta name="keywords" content=""/>
  <link rel="shortcut icon" href="<?php echo $basepath; ?>/images/design/icon.png" type="image/x-icon"/>
  <link rel="stylesheet" href="<?php echo $basepath; ?>/css/style.css" type="text/css" media="screen"/>
  <script src="<?php echo $basepath; ?>/js/jquery-1.8.3.min.js" type="text/javascript"></script>
  <script src="<?php echo $basepath; ?>/js/scripts.js" type="text/javascript"></script>
  </head>