File "index.php.bak"

Full Path: C:/wamp64/www/APPSST/index.php.bak
File size: 245 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
// Iniciar la sesión (esto es crucial y faltaba)
session_start();

// Verificar si el usuario está autenticado
if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !== true) {
    header("Location: login/");
    exit();
}