好的,所以我有一个简单的脚本应该在我的网站上路由流量但是,我很难搞清楚如何修复"未定义的索引错误"当我使用URL" localhost / sitename /"时出现在页面顶部
if(isset($_GET['p'])){ $notify = $_GET['p']; }
if ($page == "home"){
include(__DIR__.'/_includes/pages/home.php');
} elseif($page == "maintenance") {
include(__DIR__.'/_includes/pages/maintenance.php');
} else {
include(__DIR__.'/_includes/pages/home.php');
}
?>
对此我做错了什么?现在问题已被标记,但我只是尝试将用户重定向到主页,即使他们只是键入localhost / site name。我仍然收到以下错误:注意:未定义的索引:第3行的C:\ xampp \ htdocs \ BayingHound \ index.php中的p