我有问题,在localhost我的网站正常工作,上传共享主机后显示错误消息include_path
,无法打开流:没有这样的文件或目录,请查看请点击链接
https://akunbet365.000webhostapp.com/logistogel/index.php
我已编辑.htaccses
个文件
php_value include_path:/ home / public_html / logistogel /:/ home / public_html / logistogel /
我的代码是
if (isset($_GET['pages'])) {
if ($_GET["pages"]=='home')
{
include "/pages/content/home.php";
}
elseif ($_GET["pages"]=='input')
{
include "/pages/content/input.php"
}
}
但没有工作。有人请帮帮我。我很困惑
答案 0 :(得分:0)
您包含home.php
绝对路径。但看起来/pages/content/home.php
不是当前基础架构中的有效文件路径。
如果/home/public_html/logistogel/pages/content/home.php
中存在home.php文件,则应将其包含在相对位置:
include "pages/content/home.php";
绝对包含也是可能的,但您必须确保它是有效路径。