gpt4 book ai didi

php - 索引文件与包含文件冲突

转载 作者:太空宇宙 更新时间:2023-11-03 18:09:58 28 4
gpt4 key购买 nike

我的 index.php 和“包含文件”有问题。我的 index.php 文件位于名为 mysite 的主文件夹中,其中的其余部分是包含相应 .php 文件的 子文件夹。子文件夹文件工作正常,index.php 除外。每次我在浏览器中预览时,包含文件都乱七八糟。

index.php 文件的路径如下:

mysite/index.php

包含文件的路径如下:

mysite/pages/include/header.php

这是带有包含文件的 HTML 文件:

<html>
<head>

<?php
include ("pages/include/headertop.php");
include ("pages/include/header.php");
include ("pages/include/nav.php");
?>

</head>
</html>

如果我在这里遗漏了什么,请纠正我。

顺便说一下,我正在使用 XAMPP。

谢谢你和更多的力量!

最佳答案

编辑你的 index.php:

include ("../pages/include/headertop.php");
include ("../pages/include/header.php");
include ("../pages/include/nav.php");

然后重试“mysite/index.php”

关于php - 索引文件与包含文件冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23903454/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com