itflow/index.php

10 lines
122 B
PHP

<?php
if (file_exists("config.php")) {
header("Location: login.php");
} else {
header("Location: setup.php");
}
?>