Files
OpenSim-Viewer-Webinterface/index.php
T
2025-10-14 08:52:53 +02:00

11 lines
303 B
PHP

<?php
// Emergency redirect to setup if no configuration exists
if (!file_exists('include/config.php') || !file_exists('include/env.php')) {
header('Location: setup.php');
exit;
}
// If configuration exists, redirect to welcome page
header('Location: welcomesplashpage.php');
exit;
?>