我只转移了index.php,可以看到没有错误的页面。这绝对是我的代码,但我是新的PHP,不知道是什么问题
我最初遇到此错误并认为是因为我错误地标记了文件目录。我纠正了这一点,并且能够看到我在周日晚上转移的所有内容,但今天早上又回到了403错误消息。
它仍然是文件目录问题吗?
或者是我的PHP代码中缺少的东西?
这是index.php
<?php
$WEB_ROOT = getenv("DOCUMENT_ROOT");
$APP_PATH = 'pagelets';
$pagelet =$_GET['pagelet'];
require ("$WEB_ROOT/$APP_PATH/includes/language.inc.php");
require_once ("$WEB_ROOT/$APP_PATH/includes/functions.inc.php");
# index.php
if (!isset($pagelet)) {
$pagelet = "index";
}
// Include the page header.
include ("$WEB_ROOT/$APP_PATH/includes/header.inc.php");
// Begin page content
echo "<h1 id='mainhead'>" . constant(strtoupper($pagelet) . '_TITLE') . " </h1>";
include ("$WEB_ROOT/$APP_PATH/pagelets/$pagelet.inc.php");
// End page content
include ("$WEB_ROOT/$APP_PATH/includes/footer.inc.php"); // Include the footer
?>